- 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>
13 lines
242 B
YAML
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 |