From d006598968a934b5643c7cce7fad42535131817f Mon Sep 17 00:00:00 2001 From: Daniel Barton Date: Tue, 2 Jul 2024 06:11:25 +0800 Subject: [PATCH] Comment out the CA cert mounting from the docker-compose.example.yml As the wings image is built on distroless it already includes a functioning CA cert bundle in the image. --- docker-compose.example.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 8a6f57c..7ba5da0 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -22,7 +22,8 @@ services: - "/var/lib/pterodactyl/:/var/lib/pterodactyl/" - "/var/log/pterodactyl/:/var/log/pterodactyl/" - "/tmp/pterodactyl/:/tmp/pterodactyl/" - - "/etc/ssl/certs:/etc/ssl/certs:ro" + # Uncomment and point at your systems ca-certificates bundle if the images included one does not work for you. + #- "/etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt:ro" # you may need /srv/daemon-data if you are upgrading from an old daemon #- "/srv/daemon-data/:/srv/daemon-data/" # Required for ssl if you use let's encrypt. uncomment to use.