diff options
author | Louis Hampton <roastveg@hotmail.co.uk> | 2020-06-20 19:57:54 +0100 |
---|---|---|
committer | Louis Hampton <roastveg@hotmail.co.uk> | 2020-06-20 19:57:54 +0100 |
commit | 998591274bc26b361991d603d48c403c8e068d0b (patch) | |
tree | 25706a63ccc30f78bfd4c792ea28547552e6c405 /build_docker.sh | |
parent | 3cf5ef0a661c62a94766e2c08025bb7ecb785b2a (diff) |
Moved Docker to contrib
Diffstat (limited to 'build_docker.sh')
-rwxr-xr-x | build_docker.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/build_docker.sh b/build_docker.sh deleted file mode 100755 index 5f72c1fb..00000000 --- a/build_docker.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -ver="0.1" - -docker inspect pokediamond:$ver > /dev/null -if [ $? = 0 ]; then - echo "Not rebuilding image since image exists"; -else - docker build -t pokediamond:$ver . -fi -docker run --network=none -it -v $(pwd):/app pokediamond:$ver |