diff options
author | Suren A. Chilingaryan <csa@ipecompute2.ands.kit.edu> | 2020-03-09 03:37:34 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@ipecompute2.ands.kit.edu> | 2020-03-09 03:37:34 +0100 |
commit | 8fb3c0a3f96024786305a1234fe5cfb70e6f00c0 (patch) | |
tree | dc313b424aab723f8a9b17865cdcf0904eb501d0 /run | |
download | ccpi-8fb3c0a3f96024786305a1234fe5cfb70e6f00c0.tar.gz ccpi-8fb3c0a3f96024786305a1234fe5cfb70e6f00c0.tar.bz2 ccpi-8fb3c0a3f96024786305a1234fe5cfb70e6f00c0.tar.xz ccpi-8fb3c0a3f96024786305a1234fe5cfb70e6f00c0.zip |
Initial release
Diffstat (limited to 'run')
-rw-r--r-- | run/attach-devel.sh | 1 | ||||
-rw-r--r-- | run/devel.sh | 9 | ||||
-rw-r--r-- | run/run-devel.sh | 5 | ||||
-rw-r--r-- | run/run.sh | 5 | ||||
-rw-r--r-- | run/test.sh | 6 | ||||
-rw-r--r-- | run/update-from-devel.sh | 12 |
6 files changed, 38 insertions, 0 deletions
diff --git a/run/attach-devel.sh b/run/attach-devel.sh new file mode 100644 index 0000000..6facdd4 --- /dev/null +++ b/run/attach-devel.sh @@ -0,0 +1 @@ +podman exec -it "ccpi-devel" bash diff --git a/run/devel.sh b/run/devel.sh new file mode 100644 index 0000000..57ec7f0 --- /dev/null +++ b/run/devel.sh @@ -0,0 +1,9 @@ +#! /bin/bash + +set -o errexit + +if [ ! -d ../repos ]; then + buildah unshare bash ../build/extract.sh +fi + +podman run --name "ccpi-devel" -it --rm --hooks-dir /usr/share/containers/oci/hooks.d/ -v ~/ccpi/data:/ccpi/data -v ~/ccpi/repos:/ccpi/repos localhost/ccpi bash -c "bash /root/setup/provision.sh; bash" diff --git a/run/run-devel.sh b/run/run-devel.sh new file mode 100644 index 0000000..2adb95c --- /dev/null +++ b/run/run-devel.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +set -o errexit + +podman run --name "ccpi-run" -it --rm --hooks-dir /usr/share/containers/oci/hooks.d/ -v ~/ccpi/data:/ccpi/data localhost/ccpi:devel bash diff --git a/run/run.sh b/run/run.sh new file mode 100644 index 0000000..5ebb075 --- /dev/null +++ b/run/run.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +set -o errexit + +podman run --name "ccpi-run" -it --rm --hooks-dir /usr/share/containers/oci/hooks.d/ -v ~/ccpi/data:/ccpi/data localhost/ccpi bash diff --git a/run/test.sh b/run/test.sh new file mode 100644 index 0000000..90624c0 --- /dev/null +++ b/run/test.sh @@ -0,0 +1,6 @@ +#! /bin/bash + +set -o errexit + +#podman exec -it "ccpi-devel" bash /ccpi/data/run.sh +podman run --name "ccpi-run" -it --rm --hooks-dir /usr/share/containers/oci/hooks.d/ -v ~/ccpi/data:/ccpi/data -e "CUDA_VISIBLE_DEVICES=2" localhost/ccpi:devel bash /ccpi/data/run.sh diff --git a/run/update-from-devel.sh b/run/update-from-devel.sh new file mode 100644 index 0000000..19aee6b --- /dev/null +++ b/run/update-from-devel.sh @@ -0,0 +1,12 @@ +#! /bin/bash + +set -o errexit + +if [ ! -d ../repos ]; then + buildah unshare bash ../build/extract.sh +fi + +podman run --name "ccpi-devel" -it --hooks-dir /usr/share/containers/oci/hooks.d/ -v ~/ccpi/data:/ccpi/data -v ~/ccpi/repos:/ccpi/repos localhost/ccpi bash /root/setup/provision.sh +podman container cp ../repos/ ccpi-devel:/ccpi/ +podman container commit ccpi-devel ccpi:devel +podman rm ccpi-devel |