18 lines
326 B
Bash
Executable File
18 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# 2026-07-13 Hyperling
|
|
# Create the necessary folders for volumes to work.
|
|
# This must be run before the container will start properly.
|
|
|
|
## Setup ##
|
|
|
|
DIR="$(dirname -- "${BASH_SOURCE[0]}")"
|
|
source $DIR/.env
|
|
|
|
## Main ##
|
|
|
|
# Create folders.
|
|
mkdir -pv ../../Volumes/Prosody/data
|
|
|
|
# Finish successfully.
|
|
exit 0
|