From ce8b851be2965e44719773130b3e91dd214701a4 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 23 Jan 2023 15:00:02 -0500 Subject: [PATCH] fix: ensure the mounted services directory is symlinked correctly Closes #5468 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b6215dce8..a3a68d5e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,7 @@ RUN \ && ln -sf /mnt/dokku/home/dokku /home/dokku \ && ln -sf /mnt/dokku/var/lib/dokku/config /var/lib/dokku/config \ && ln -sf /mnt/dokku/var/lib/dokku/data /var/lib/dokku/data \ + && ln -sf /mnt/dokku/var/lib/dokku/services /var/lib/dokku/services \ && mv /etc/my_init.d/00_regen_ssh_host_keys.sh /etc/my_init.d/15_regen_ssh_host_keys \ && rm -f /etc/nginx/sites-enabled/default /usr/share/nginx/html/index.html /etc/my_init.d/10_syslog-ng.init \ && rm -f /usr/local/openresty/nginx/conf/sites-enabled/default /usr/share/openresty/html/index.html \