new sslproxy xai cli commands cerbot info and renewal
This commit is contained in:
45
dockerfiles/services/sslproxy/docker-compose.tools.yml
Normal file
45
dockerfiles/services/sslproxy/docker-compose.tools.yml
Normal 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
|
||||
Reference in New Issue
Block a user