No description
Find a file
2025-12-02 03:21:44 +00:00
build.sh uploading dev-container to git repo 2025-10-20 04:20:12 +00:00
Containerfile added OCI file tag in /run/host/container-manager for starship integration 2025-12-02 03:21:44 +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>