23 lines
586 B
YAML
23 lines
586 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
traefik-certs-dumper:
|
||
|
container_name: traefik-certs-dumper
|
||
|
# user: root
|
||
|
image: humenius/traefik-certs-dumper:1.6.1-alpine
|
||
|
restart: unless-stopped
|
||
|
healthcheck:
|
||
|
test: ["CMD", "/usr/bin/healthcheck"]
|
||
|
interval: 30s
|
||
|
timeout: 10s
|
||
|
retries: 5
|
||
|
volumes:
|
||
|
- /root/runtipi/traefik/shared/acme.json:/traefik/acme.json:ro
|
||
|
- ${APP_DATA_DIR}/data/certs:/output:rw
|
||
|
environment:
|
||
|
- ACME_FILE_PATH=/traefik/acme.json
|
||
|
networks:
|
||
|
- tipi_main_network
|
||
|
labels:
|
||
|
# Main
|
||
|
traefik.enable: false
|