nginx-infra/docker-compose.yml
happybell80 f95115b275 Simplify deployment: nginx only with proxy to port 5137
- Remove unnecessary services (api-base, test_api, frontend containers)
- Configure nginx to proxy to host.docker.internal:5137
- Simplified docker-compose.yml for initial deployment test

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-07 23:46:18 +09:00

13 lines
242 B
YAML

version: '3.8'
services:
nginx:
build: ./nginx
ports:
- "80:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health"]
interval: 30s
timeout: 10s
retries: 3