version: '3.8' services: indeedhub: 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", "curl", "-f", "http://localhost:7777/"] interval: 30s timeout: 10s retries: 3 start_period: 40s networks: indeedhub-network: driver: bridge