Add CMD so that NGINX log appears in container log.

This commit is contained in:
2026-07-04 08:06:47 -07:00
parent 4d560b3597
commit 64dbf0c97b
+4
View File
@@ -135,3 +135,7 @@ RUN cp -rv "$FDROID" "$WEBROOT/"
# TODO: Can NGINX be configured to serve this as root while still # TODO: Can NGINX be configured to serve this as root while still
# having the URL be fdroid/repo/? How do others handle this? # having the URL be fdroid/repo/? How do others handle this?
RUN cp -rv "$REPO"/* "$WEBROOT/" 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