Skip to content

Commit 28c1e03

Browse files
committed
Fix docker/storage dir to always have correct owner
- previously if docker/storage already existed, but with a different owner, then the chown was never run and the db could not be accessed
1 parent 91a3e9f commit 28c1e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ _create_storage env:
6565
SCRIPT_DIR={{justfile_directory()}}
6666
if ! test -d "$SCRIPT_DIR/storage"; then
6767
mkdir -p "$SCRIPT_DIR/storage"
68-
sudo chown 10003:10003 "$SCRIPT_DIR/storage"
6968
fi
69+
sudo chown 10003:10003 "$SCRIPT_DIR/storage"
7070
fi
7171

7272

0 commit comments

Comments
 (0)