summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..fe056c6
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,25 @@
+on: '3'
+ services:
+ nginx:
+ image: nginx:1.15-alpine
+ ports:
+ - "80:80"
+ - "443:443"
+ volumes:
+ - ./data/nginx:/etc/nginx/conf.d
+ - ./data/certbot/conf:/etc/letsencrypt
+ - ./data/certbot/www:/var/www/certbot
+ command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
+ restart: always
+ certbot:
+ image: certbot/certbot
+ volumes:
+ - ./data/certbot/conf:/etc/letsencrypt
+ - ./data/certbot/www:/var/www/certbot
+ entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
+ restart: always
+
+ networks:
+ default:
+ external:
+ name: frontend