Allow container to reboot properly if using /tmp/ for models. Fixes newly created folder having permissions issues.

This commit is contained in:
2025-07-26 13:35:32 -07:00
parent 15f01061ba
commit eb2dda9d66
3 changed files with 30 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
#!/usr/bin/env bash
# 2025-07-26 Hyperling
# Ensure the LibreTranslate container starts correctly after a reboot, especially if placing models/ under /tmp/.
## Setup ##
DIR="$(dirname -- "${BASH_SOURCE[0]}")"
cd $DIR
source .env
## Main ##
# Shutdown the container.
docker compose down
# Create folders.
prep.sh
# Start the container.
docker compose up -d
# Finish successfully.
exit 0