aboutsummaryrefslogtreecommitdiff
path: root/full_test_with_podman.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-06-28 13:35:52 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-06-28 13:35:52 +0300
commitf9c0cbe0340e22f9bb11e77b6c0f302364c391db (patch)
tree9d4760ab93728b49627faa5c14e17e520265acb9 /full_test_with_podman.sh
parent02c4bacacb60509fbf9975977cb4202649de601b (diff)
downloadarching-kaos-tools-f9c0cbe0340e22f9bb11e77b6c0f302364c391db.tar.gz
arching-kaos-tools-f9c0cbe0340e22f9bb11e77b6c0f302364c391db.tar.bz2
arching-kaos-tools-f9c0cbe0340e22f9bb11e77b6c0f302364c391db.zip
Expose port to host so we can test the API (won't work cause of disallowed network, tho :) )
Diffstat (limited to 'full_test_with_podman.sh')
-rwxr-xr-xfull_test_with_podman.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/full_test_with_podman.sh b/full_test_with_podman.sh
index 3d30acb..8948ec7 100755
--- a/full_test_with_podman.sh
+++ b/full_test_with_podman.sh
@@ -5,7 +5,7 @@ then
tag="$(bash ./test_with_podman.sh "$1" | tail -n 2 | head -n 1 | cut -d ' ' -f 3)"
name="$(echo -n $tag | cut -d ':' -f 1 | cut -d '/' -f 2)"
container="akt-test-$name"
- podman run --name $container -d $tag
+ podman run --name $container -d -p 8620:8610 $tag
podman exec -it $container bash
podman container stop $container
podman container rm $container