Files
startusingdocker/compose/proxy/proxy.yml

13 lines
188 B
YAML

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