Skip to content

Commit 5a58d12

Browse files
authored
Merge pull request #180 from nicolasbock/local_script
Ignore failed `docker pull`
2 parents 0e09d7e + edbffe8 commit 5a58d12

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

run-local-docker-container.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
: ${IMAGE:=nicolasbock/qmd-progress:latest}
44

5-
docker pull ${IMAGE}
5+
docker pull ${IMAGE} || echo "cannot pull image"
66
docker run --interactive --tty --rm \
7-
--volume ${PWD}:/qmd-progress --workdir /qmd-progress \
7+
--volume ${PWD}:/qmd-progress \
8+
--workdir /qmd-progress \
89
--user $(id --user):$(id --group) \
910
${IMAGE}

0 commit comments

Comments
 (0)