mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-10 22:20:46 +00:00
14 lines
335 B
Bash
14 lines
335 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
source /lib.sh
|
||
|
|
||
|
entrypoint_log "==> Create the storage tree if needed"
|
||
|
as_www_user cp --recursive storage.skel/* storage/
|
||
|
|
||
|
entrypoint_log "==> Ensure storage is linked"
|
||
|
as_www_user php artisan storage:link
|
||
|
|
||
|
entrypoint_log "==> Ensure permissions are correct"
|
||
|
chown --recursive www-data:www-data storage/ bootstrap/
|