diff options
-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 |