From 26b04ad1187a1b476d6bf2460efe3f152bf1c753 Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Thu, 14 Apr 2016 10:50:42 +0200 Subject: [PATCH] [ADD] Dev container: add 'upload' directory to mounted volumes --- launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch.sh b/launch.sh index 628592c..8b9c575 100755 --- a/launch.sh +++ b/launch.sh @@ -190,7 +190,7 @@ dev() { if [ $GISSMO_DEV_RUNNING_PORT -eq 0 ]; then PORT_PARAM=" -P " fi - $docker_cmd run -it --rm --link ${POSTGRES_DOCKER_NAME}:db ${PORT_PARAM} -v ${GISSMO_DIR}:/opt/gissmo gissmo:${GISSMO_VERSION} ${ARGS:='development'} || error_and_quit "Failed to create and launch ${GISSMO_DOCKER_NAME} container." + $docker_cmd run -it --rm --link ${POSTGRES_DOCKER_NAME}:db ${PORT_PARAM} -v ${GISSMO_DIR}:/opt/gissmo -v ${UPLOAD_DIR}:/opt/gissmo/upload gissmo:${GISSMO_VERSION} ${ARGS:='development'} || error_and_quit "Failed to create and launch ${GISSMO_DOCKER_NAME} container." } test_backup() {