commit fa0adcd33fc06a454003f74498e0f79a937f9b93
parent 8239601385a4bbfb195f9ba05526a97a4108a58a
Author: Devan Carpenter <devan@taler.net>
Date: Mon, 4 Dec 2023 12:32:29 -0500
sandcastle-ng: ensure apache2 is disabled
apache starting causes caddy to fail
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
@@ -233,4 +233,6 @@ COPY --from=merchant-demos /packages/merchant-demos/* /packages/
RUN apt-get install --no-install-recommends -y /packages/*.deb
COPY systemd/setup-sandcastle.service /etc/systemd/system/
RUN systemctl enable setup-sandcastle.service
-RUN systemctl disable postgresql
+# Disable potentially problem-causing services
+RUN systemctl disable postgresql && \
+ systemctl disable apache2 || true