workaround

pull/6/head
Marcus Pöhls 2019-12-18 10:56:22 +01:00
parent 164361ed5d
commit c1a499f9ec
1 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
#!/bin/sh
sh -c "docker run --name redis --publish 6379:6379 --detach redis:$1"
docker_run="docker run"
docker_run="$docker_run --name redis --publish 6379:6379 --detach redis:$1"
sh -c "$docker_run"