docker-letsencrypt/docker-compose.yml

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