version: '3.8' services: indeedhub: image: indeedhub-prototype:latest build: context: . dockerfile: Dockerfile container_name: indeedhub-app restart: unless-stopped ports: - "7777:7777" environment: - NODE_ENV=production networks: - indeedhub-network labels: - "com.centurylinklabs.watchtower.enable=true" healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7777/health"] interval: 30s timeout: 10s retries: 3 start_period: 40s networks: indeedhub-network: driver: bridge