- 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>
10 lines
175 B
YAML
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 |