name: surl services: front: build: . container_name: front ports: - "127.0.0.1:80:11451" volumes: - "./dist:/usr/share/nginx/html:ro" - "./nginx.conf:/etc/nginx/nginx.conf" restart: unless-stopped healthcheck: test: ["CMD", "curl", "-f", "http://localhost/health"] interval: 5s timeout: 5s retries: 5 start_period: 5s networks: - surl-network networks: surl-network: external: false