mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-25 16:01:04 +00:00
Validated with a real 1Panel v2 upgrade smoke from 8.6.0 to 8.6.1, including restart, HTTP access, uninstall, and cleanup.
7 lines
166 B
Bash
Executable File
7 lines
166 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
DATA_DIR="${APP_DATA_DIR:-./data}"
|
|
mkdir -p "${DATA_DIR}/mongodb"
|
|
chown -R 1000:1000 "${DATA_DIR}/mongodb" 2>/dev/null || true
|