version: '3.8' services: maddoscientisto-web: build: context: . dockerfile: Dockerfile image: ${IMAGE_REGISTRY:-maddoscientisto-web}:${IMAGE_TAG:-latest} ports: - "8002:80" restart: unless-stopped healthcheck: test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/ >/dev/null 2>&1 || exit 1"] interval: 30s timeout: 5s retries: 3