No description
  • Dockerfile 82.1%
  • Shell 17.9%
Find a file
2026-03-27 18:19:16 +00:00
build.sh uploading dev-container to git repo 2025-10-20 04:20:12 +00:00
Containerfile added pulling nvim config as part of build process 2026-03-27 18:19:16 +00: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>