mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
14 lines
294 B
Bash
Executable File
14 lines
294 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-storage-install() {
|
|
declare desc="storage install trigger"
|
|
declare trigger="install"
|
|
|
|
mkdir -p "${DOKKU_LIB_ROOT}/data/storage"
|
|
chown dokku:dokku "${DOKKU_LIB_ROOT}/data/storage"
|
|
}
|
|
|
|
trigger-storage-install "$@"
|