services: web: build: context: . dockerfile: Dockerfile args: NEXT_PUBLIC_API_URL: http://localhost:3000/api ports: - "5561:3000" environment: - NODE_ENV=production - NEXT_PUBLIC_API_URL=http://localhost:3000/api restart: unless-stopped healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"] interval: 30s timeout: 10s retries: 3 start_period: 40s networks: - najm_najm networks: najm_najm: external: true