2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-08 10:34:27 +08:00
Files
templates/certd/docker-compose.yml
renovate[bot] 3dc5bfef6c chore(deps): update docker images (minor/patch/digest) (#31)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-05 18:37:14 +00:00

21 lines
457 B
YAML

services:
certd:
image: greper/certd:1.38.7
restart: unless-stopped
networks:
- acepanel-network
volumes:
- ./data/certd:/app/data
ports:
- ${CERTD_PORT_HTTP}:7001
- ${CERTD_PORT_HTTPS}:7002
healthcheck:
test: [ "CMD-SHELL", "curl -fsSL http://localhost:7001 || exit 1" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
networks:
acepanel-network:
external: true