14 lines
241 B
YAML
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 |