zenith/docker_files/runzenith
Rene Vergara A. 7266550434 dkr001 - Zenith Docker Image
Folder containing Docker Imagees created
	 TUI support only
2024-06-19 22:41:21 -04:00

25 lines
605 B
Bash
Executable file

#!/bin/bash
ZFOLDER=~/Public/zenith
IMAGE_NAME=zenith-docker:0.5.3.0
# Check if data folder exists
if [ ! -d "$ZFOLDER" ]; then
echo "Error starting Zenith image"
echo "Zenith configurtion and data folder ($ZFOLDER) does not exists."
echo "Aborting process..."
exit
fi
# Check if the image exists locally
if [[ "$(docker images -q $IMAGE_NAME 2> /dev/null)" == "" ]]; then
echo "Error starting Zenith image"
echo "Image $IMAGE_NAME not found locally."
echo "Aborting process..."
exit
fi
docker run -it --mount src=$ZFOLDER,target=/home/zenith,type=bind --net=host $IMAGE_NAME
# End