pixelfed/contrib/docker/shared/docker-entrypoint.d/30-cache.sh

14 lines
288 B
Bash
Raw Normal View History

#!/bin/bash
set -o errexit -o nounset -o pipefail
source /lib.sh
entrypoint_log "==> route:cache"
2024-01-04 11:20:22 +00:00
as_runtime_user php artisan route:cache
entrypoint_log "==> view:cache"
2024-01-04 11:20:22 +00:00
as_runtime_user php artisan view:cache
entrypoint_log "==> config:cache"
as_runtime_user php artisan config:cache