2018-09-20 21:34:20 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
proxy:
|
2019-05-17 14:15:22 +00:00
|
|
|
image: staticfloat/nginx-certbot
|
2018-09-20 21:34:20 +00:00
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
CERTBOT_EMAIL: "your.email@example.com"
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
- "443:443"
|
2019-05-17 14:15:22 +00:00
|
|
|
volumes:
|
2020-02-25 05:02:00 +00:00
|
|
|
- ./conf.d:/etc/nginx/user.conf.d:ro
|
2019-10-03 04:00:59 +00:00
|
|
|
|