No description
  • Dockerfile 81.6%
  • Shell 18.4%
Find a file
2026-01-08 17:27:30 -06:00
build.sh uploading dev-container to git repo 2025-10-20 04:20:12 +00:00
Containerfile changed sudo to be wheel group instead of ${USER} 2026-01-08 17:27:30 -06:00
push.sh uploading dev-container to git repo 2025-10-20 04:20:12 +00:00
README.md uploading dev-container to git repo 2025-10-20 04:20:12 +00:00

Building Image

Build image, leaving default user user

podman build -t <image>:<tag> -f containerfile

Build image, setting the username

podman build -t <image>:<tag> -f containerfile --build-args USER=<user>

Usage

Run the container in detached mode with tty

podman run -d --priviledge --tty --name <contianer_name> <image>:<tag>
  • --priviledge flag is needed for podman-in-podman capabilities

Attach to the container with exec

podman exec -it <container_name> /bin/fish

Attach to the container with attach

podman attach <container_name>