No description
| build.sh | ||
| Containerfile | ||
| push.sh | ||
| README.md | ||
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>
--priviledgeflag 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>