nginx-infra/docker-compose.yml
happybell80 2d90d40b3a Simplify to minimal nginx proxy setup
- Use standard nginx:alpine image instead of custom build
- Simple default.conf for 80 → 5137 proxy
- Remove unnecessary nginx/ directory and complex configurations
- Clean, minimal setup for basic reverse proxy

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

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

10 lines
175 B
YAML

version: "3.8"
services:
nginx:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf:ro
restart: always