From 64dbf0c97ba68856359af61952306ce71208cfd2 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 4 Jul 2026 08:06:47 -0700 Subject: [PATCH] Add CMD so that NGINX log appears in container log. --- Config/F-DroidRepo/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Config/F-DroidRepo/Dockerfile b/Config/F-DroidRepo/Dockerfile index 72e380e..b8c3ded 100644 --- a/Config/F-DroidRepo/Dockerfile +++ b/Config/F-DroidRepo/Dockerfile @@ -135,3 +135,7 @@ RUN cp -rv "$FDROID" "$WEBROOT/" # TODO: Can NGINX be configured to serve this as root while still # having the URL be fdroid/repo/? How do others handle this? RUN cp -rv "$REPO"/* "$WEBROOT/" + +CMD echo "F-Droid Repository has been started!" && \ + tail -F /var/log/nginx/access.log & \ + tail -F /var/log/nginx/error.log