We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa3fe7 commit ff9f147Copy full SHA for ff9f147
installers/install_nichart_docker_linux.sh
@@ -77,7 +77,8 @@ APP_URL_DEFAULT="http://localhost:8501/"
77
78
CONTAINER_NAME="nichart_server"
79
80
-RUN_ARGS=(--rm -d --name "${CONTAINER_NAME}")
+# Ensure path translation can be done transparently even if job/pipeline docker containers are spun up from inside the nichart_server container
81
+RUN_ARGS=(--rm -d --name "${CONTAINER_NAME}" -e NICHART_HOST_DATA_DIR="${DATA_DIR}")
82
RUN_ARGS+=(--privileged -p 8501:8501 -v /usr/bin/docker:/usr/bin/docker -v /var/run/docker.sock:/var/run/docker.sock)
83
RUN_ARGS+=(-v "${DATA_DIR}:/app/output_folder:rw")
84
0 commit comments