mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
340 B
Bash
11 lines
340 B
Bash
#!/bin/bash
|
|
source /docker/helpers.sh
|
|
|
|
entrypoint-set-script-name "$0"
|
|
|
|
# Copy the [storage/] skeleton files over the "real" [storage/] directory so assets are updated between versions
|
|
run-as-runtime-user cp --recursive storage.skel/. ./storage/
|
|
|
|
# Ensure storage linkk are correctly configured
|
|
run-as-runtime-user php artisan storage:link
|