Skip to content

Commit 4114299

Browse files
committed
Fix docker-entrypoint.sh when using a read-only config file
1 parent 5c77cdf commit 4114299

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

1.2/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
# allow the container to be started with `--user`
66
if [ "$(id -u)" = '0' ]; then
7-
chown -R wirecloud .
7+
chown -R wirecloud data
88
chown -R wirecloud /var/www/static
99
fi
1010

dev/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
# allow the container to be started with `--user`
66
if [ "$(id -u)" = '0' ]; then
7-
chown -R wirecloud .
7+
chown -R wirecloud data
88
chown -R wirecloud /var/www/static
99
fi
1010

0 commit comments

Comments
 (0)