services: app: image: git.sneakygeek.net/sneakygeek/sneakyswole:latest container_name: sneakyswole ports: - "${APP_PORT:-8000}:8000" volumes: - sneakyswole-data:/app/data env_file: - .env restart: unless-stopped healthcheck: test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"] interval: 30s timeout: 10s retries: 3 start_period: 10s volumes: sneakyswole-data: driver: local