13 lines
200 B
YAML
13 lines
200 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
|
|
hugo:
|
|
image: nginx:alpine
|
|
container_name: hugo-site
|
|
volumes:
|
|
- ./nginx-proxy:/etc/nginx/conf.d
|
|
- ./public:/var/www/html
|
|
ports:
|
|
- 6060:80
|