9 lines
192 B
YAML
9 lines
192 B
YAML
nginx:
|
|
image: nginx
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./www:/usr/share/nginx/html
|
|
- ./nginx.conf:/nginx.conf
|
|
command: nginx -c /nginx.conf |