services: web: build: context: . dockerfile: Dockerfile image: teamby-landing:latest container_name: teamby_landing restart: unless-stopped env_file: - .env.prod ports: - "8065:3000" healthcheck: test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:3000/ || exit 1"] interval: 30s timeout: 5s retries: 3 start_period: 15s