version: '3.8' services: rsskeeper: build: context: . dockerfile: Dockerfile container_name: rsskeeper ports: - "7329:7329" volumes: - ./data:/app/data env_file: - .env restart: unless-stopped healthcheck: test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:7329/api/health')"] interval: 30s timeout: 10s retries: 3 start_period: 10s