mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
12 lines
262 B
Bash
Executable File
12 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
DATA_DIR="${APP_DATA_DIR:-./data}"
|
|
mkdir -p \
|
|
"${DATA_DIR}/config" \
|
|
"${DATA_DIR}/files" \
|
|
"${DATA_DIR}/postgres" \
|
|
"${DATA_DIR}/redis"
|
|
|
|
chown -R 991:991 "${DATA_DIR}/config" "${DATA_DIR}/files" 2>/dev/null || true
|