Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 872 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 872 Bytes

squashfs-tools in a container

Tags

  • latest: latest squashfs-tools binary files on top of scratch image
    • v4.6.1-r1: you can choose specific version of squashfs-tools

Commands

  • mksquasfs
  • unsquashfs

Pull

podman pull docker.io/queeup/squashfs-container

# OR

podman pull ghcr.io/queeup-containers/squashfs-container

Use

podman run \
    --rm \
    --volume `pwd`:/build \
    --workdir /build \
    --interactive \
    --tty \
    squashfs-container \
    mksquashfs system.new SYSTEM.new -noappend -comp zstd -Xcompression-level 19 -b 1048576

Build

podman build --tag squashfs-container --file Containerfile