From: Pablo Zmdl Date: Tue, 19 Aug 2025 11:12:27 +0000 (+0200) Subject: Fix Roundcube updates with development image X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=2f58f0ce69f5be49d0ce0db86e6e1b736afdef8a;p=roundcube-roundcubemail-docker.git Fix Roundcube updates with development image Since we're using the nonroot-image, we can't (and don't need to) use `sudo`. --- diff --git a/development/docker-entrypoint.sh b/development/docker-entrypoint.sh index 7c24ef3..2e9fb71 100644 --- a/development/docker-entrypoint.sh +++ b/development/docker-entrypoint.sh @@ -48,6 +48,6 @@ fi bin/updatecss.sh # Initialize or update the database. -sudo -u www-data bin/initdb.sh --dir=$PWD/SQL --update || echo "Failed to initialize/update the database. Please start with an empty database and restart the container." +bin/initdb.sh --dir=$PWD/SQL --update || echo "Failed to initialize/update the database. Please start with an empty database and restart the container." exec apache2-foreground