File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/resources/jupyter Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -187,15 +187,16 @@ if [[ "${ROLE}" == 'Master' ]]; then
187
187
# Note the `docker-compose pull` is retried to avoid intermittent network errors, but
188
188
# `docker-compose up` is not retried.
189
189
COMPOSE_FILES=(-f /etc/` basename ${PROXY_DOCKER_COMPOSE} ` )
190
+ cat /etc/` basename ${PROXY_DOCKER_COMPOSE} `
190
191
if [ ! -z ${JUPYTER_DOCKER_IMAGE} ] ; then
191
192
COMPOSE_FILES+=(-f /etc/` basename ${JUPYTER_DOCKER_COMPOSE} ` )
193
+ cat /etc/` basename ${JUPYTER_DOCKER_COMPOSE} `
192
194
fi
193
195
if [ ! -z ${RSTUDIO_DOCKER_IMAGE} ] ; then
194
196
COMPOSE_FILES+=(-f /etc/` basename ${RSTUDIO_DOCKER_COMPOSE} ` )
197
+ cat /etc/` basename ${RSTUDIO_DOCKER_COMPOSE} `
195
198
fi
196
199
197
- cat " ${COMPOSE_FILES[@]} "
198
-
199
200
retry 5 docker-compose " ${COMPOSE_FILES[@]} " config
200
201
retry 5 docker-compose " ${COMPOSE_FILES[@]} " pull
201
202
retry 5 docker-compose " ${COMPOSE_FILES[@]} " up -d
You can’t perform that action at this time.
0 commit comments