slackware-container

(★ 108)

Minimal rootfs creation for slackware linux (ideal for container images)

File Explorer

  • get_paths.sh
  • Makefile
  • mkimage-slackware.sh
  • README.md
  • TODOs

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

podman run

View Details ▼

Run a command in a new Podman container.

podman run {{image:tag}} {{command}}

Run command in a new container from a tagged image:

podman run {{[-d|--detach]}} {{image:tag}} {{command}}

Run command in a new container in background and display its ID:

podman run --rm {{[-it|--interactive --tty]}} {{image:tag}} {{command}}

Run command in a one-off container in interactive mode and pseudo-TTY:

// repository documentation