B
Blueprint12mo ago
Tino

Random errors

note: this is a docker container which uses my custom image so i have ssh access. this is my 5th time that i have tried installing it on this machine
No description
3 Replies
Loki
Loki12mo ago
Blueprint expects webroot to be in /app if run in a Docker image. If you need ssh access, I recommend adding the necessary logic to the Dockerfile at https://github.com/BlueprintFramework/docker/ rather than building your custom image from scratch. If this image mimics a real operating system, change the logic on line 59 of the blueprint.sh script
if [[ -f "/.dockerenv" ]]; then
DOCKER="y"
FOLDER="/app"
else
DOCKER="n"
fi
if [[ -f "/.dockerenv" ]]; then
DOCKER="y"
FOLDER="/app"
else
DOCKER="n"
fi
to just
DOCKER="n"
DOCKER="n"
Catspin
Catspin12mo ago
chore
Jaixr's Backup
Jaixr's Backup12mo ago
......

Did you find this page helpful?