8 lines
184 B
YAML
8 lines
184 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "4001:80"
|
|
volumes:
|
|
- ./app:/usr/share/nginx/html:ro
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro |