diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-19 16:50:21 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-19 16:50:21 +0530 |
commit | ff32d10d3d53bba4dc737119fad0a51ac9fe372e (patch) | |
tree | 05b3222a588887d0a39b66f3b419c0008f13fa59 | |
parent | af271fb96d7ddb5580c60271c2b07dfbf93c362a (diff) |
docker->podman
-rw-r--r-- | Containerfile (renamed from Dockerfile) | 0 | ||||
-rwxr-xr-x | scripts/build.sh | 2 | ||||
-rwxr-xr-x | scripts/run.sh | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Containerfile index 8f27665..8f27665 100644 --- a/Dockerfile +++ b/Containerfile diff --git a/scripts/build.sh b/scripts/build.sh index 457c5db..91c355d 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -docker build -t lineage . +podman build -t lineage . diff --git a/scripts/run.sh b/scripts/run.sh index b2a528d..ac8d1c4 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -8,5 +8,5 @@ fi user=compromyse pushd $1 -docker run -it --rm -v "$(pwd):/home/$user/src" -v "$HOME/.ssh:/home/$user/.ssh" lineage +podman run -it --rm -v "$(pwd):/home/$user/src" -v "$HOME/.ssh:/home/$user/.ssh" lineage popd |