fix cloudflare tunnels (#1076)

The Server didn't have correct permissions to create the directory for
the cloudflare config. Have docker do it instead. Also the credentials
file key was incorrect.
This commit is contained in:
evanpelle
2025-06-06 16:13:05 -07:00
committed by evanpelle
parent fcc2574ffc
commit 8192fe1cfe
6 changed files with 14 additions and 12 deletions
+3
View File
@@ -59,5 +59,8 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY startup.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/startup.sh
RUN mkdir -p /tmp/.cloudflared && chmod 777 /tmp/.cloudflared
ENV CF_CONFIG_DIR=/tmp/.cloudflared
# Use the startup script as the entrypoint
ENTRYPOINT ["/usr/local/bin/startup.sh"]