new sslproxy xai cli commands cerbot info and renewal

This commit is contained in:
2020-06-02 09:10:48 -04:00
parent 73ad921e3b
commit 764aa9c8ed
14 changed files with 196 additions and 53 deletions

View File

@@ -0,0 +1,45 @@
---
version: '3.4'
services:
renew:
image: ${LETSENCRYPT_IMAGE}
volumes:
- ${LETSENCRYPT_MOUNT}:/etc/letsencrypt:ro
ports:
- 80:80
command:
- certonly
- -n
- --standalone
- --test-cert
- --dryrun
networks:
- prod_ui
certificates:
image: ${LETSENCRYPT_IMAGE}
volumes:
- ${LETSENCRYPT_MOUNT}:/etc/letsencrypt
ports:
- 80:80
command:
- certificates
# - --standalone
# - --test-cert
# - --dryrun
test:
image: ${LETSENCRYPT_IMAGE}
volumes:
- ${LETSENCRYPT_MOUNT}:/etc/letsencrypt
ports:
- 80:80
networks:
prod_ui:
external:
name: prod_ui