Website/docker-compose.yml
Jonathan Hodgson aa21b867b3 Start blog
2020-02-29 11:39:13 +00:00

10 lines
219 B
YAML

version: '3'
services:
nginx:
image: nginx
ports:
- "8080:80"
volumes:
- ./nginx:/etc/nginx/conf.d:ro
- ./public_html:/usr/share/nginx/html:ro
- ./assets:/usr/share/nginx/assets:ro