taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit bbb840a76aed609c4a188142d97095b722186c61
parent ecf1367b97eb9c2e59d659559865b3f5cf278f82
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:
Msandcastle-ng/Dockerfile | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sandcastle-ng/Dockerfile b/sandcastle-ng/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