From 97189374b97234cebd9603f23157873ff5d5ad85 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 4 Jul 2026 08:16:31 -0700 Subject: [PATCH] Ensure nginx gets started, was happening automatically before but maybe it's part of the default trixie CMD which is no longer being used. --- Config/F-DroidRepo/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Config/F-DroidRepo/Dockerfile b/Config/F-DroidRepo/Dockerfile index cd5a71e..052fc6b 100644 --- a/Config/F-DroidRepo/Dockerfile +++ b/Config/F-DroidRepo/Dockerfile @@ -136,6 +136,7 @@ RUN cp -rv "$FDROID" "$WEBROOT/" # having the URL be fdroid/repo/? How do others handle this? RUN cp -rv "$REPO"/* "$WEBROOT/" -CMD echo "F-Droid Repository has been started!" && \ +CMD service nginx start && \ + echo "\n*** F-Droid Repository has been started successfully! ***\n" && \ tail -F /var/log/nginx/access.log & \ tail -F /var/log/nginx/error.log