refactor: rename script from rust-pod to devpod

This commit is contained in:
2026-05-09 15:20:08 +00:00
parent 49e599eeba
commit 95f5df1af6
2 changed files with 66 additions and 0 deletions

15
devpod Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
IMAGE_NAME="rust-dev-pod"
if ! podman image exists $IMAGE_NAME; then
echo "Image $IMAGE_NAME not found. Building..."
podman build -t $IMAGE_NAME .
fi
echo "Dropping you into the Rust Dev Pod..."
podman run -it --rm \
-v "$PWD:$PWD" \
-w "$PWD" \
$IMAGE_NAME \
bash