services: mindsecretary: image: ghcr.io/ginkida/mindsecretary:latest build: . container_name: mindsecretary restart: unless-stopped env_file: - .env volumes: - ./data:/app/data - ./config:/app/config:ro healthcheck: test: ["CMD", "python", "-c", "import sys; sys.exit(0)"] interval: 60s timeout: 5s retries: 3