fitness-web/environments/cutlergyor/proxy/docker-compose.yaml
Schneider Roland de10ca49db nginx proxy
2022-06-14 20:50:33 +02:00

23 lines
554 B
YAML

version: '3'
# volume descriptiosn
# ./certbot/www/ -> used to do the challange
# ./certbot/conf/ -> used to store the ssl artifacts generated by certbot
services:
webserver:
image: nginx:latest
ports:
- 80:80
- 443:443
restart: always
volumes:
- ./nginx/conf/:/etc/nginx/conf.d/:ro
- ./certbot/www:/var/www/certbot/:ro
- ./certbot/conf/:/etc/nginx/ssl/:ro
certbot:
image: certbot/certbot:latest
volumes:
- ./certbot/www/:/var/www/certbot/:rw
- ./certbot/conf/:/etc/letsencrypt/:rw