Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix mkdirs
  • Loading branch information
asbiin committed Mar 3, 2018
commit 418f38128cecff8c2bc1c687b289c4af4c73b718
6 changes: 5 additions & 1 deletion scripts/docker/test-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ ${ARTISAN} db:seed --class CountriesSeederTable --force

# Ensure storage directories are present
STORAGE=${MONICADIR}/storage
mkdir -p ${STORAGE}/{logs,app/public,framework/views,framework/cache,framework/sessions}
mkdir -p ${STORAGE}/logs
mkdir -p ${STORAGE}/app/public
mkdir -p ${STORAGE}/framework/views
mkdir -p ${STORAGE}/framework/cache
mkdir -p ${STORAGE}/framework/sessions
chown -R monica:apache ${STORAGE}
chmod -R g+rw ${STORAGE}

Expand Down