version: '3.8' services: vendaweb-frontend: build: context: . dockerfile: Dockerfile image: vendaweb-react:latest container_name: vendaweb-frontend ports: - "3035:80" environment: - NODE_ENV=production restart: unless-stopped networks: - vendaweb-network healthcheck: test: [ "CMD", "curl", "-f", "http://localhost/health" ] interval: 30s timeout: 10s retries: 3 start_period: 40s labels: - "com.vendaweb.description=Plataforma Smart Jurunense - Frontend" - "com.vendaweb.version=1.0.0" networks: vendaweb-network: driver: bridge