hugo-site/docker-compose.yml
2021-07-28 11:55:52 +02:00

11 lines
199 B
YAML

version: '3.9'
services:
hugo:
image: nginx:alpine
container_name: hugo-site
volumes:
- ./nginx-docker:/etc/nginx/conf.d
- ./public:/var/www/html
ports:
- 6060:80