diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-20 21:19:32 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-20 21:25:42 +0530 |
commit | db9e17a89019043f383fd5c8f673ebd5cd6cea6c (patch) | |
tree | 0f9801ddffd533d56ebd51b40e08f5fc4e6e557a | |
parent | dfcb4783b12e3c5e7a0535ca5f6c81682c3b41ac (diff) |
podman->docker
-rw-r--r-- | Dockerfile (renamed from Containerfile) | 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/Containerfile b/Dockerfile index 8c6c62f..8c6c62f 100644 --- a/Containerfile +++ b/Dockerfile diff --git a/scripts/build.sh b/scripts/build.sh index 91c355d..457c5db 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -podman build -t lineage . +docker build -t lineage . diff --git a/scripts/run.sh b/scripts/run.sh index ac8d1c4..b2a528d 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -8,5 +8,5 @@ fi user=compromyse pushd $1 -podman run -it --rm -v "$(pwd):/home/$user/src" -v "$HOME/.ssh:/home/$user/.ssh" lineage +docker run -it --rm -v "$(pwd):/home/$user/src" -v "$HOME/.ssh:/home/$user/.ssh" lineage popd |