Files
startusingdocker/compose/proxy/proxy.yml
2026-02-12 12:26:52 +01:00

14 lines
241 B
YAML

services:
web:
image: nginx:alpine
volumes:
- ./web:/usr/share/nginx/html:ro
proxy:
image: nginx:alpine
ports:
- 80:80
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- web