Multi‑algorithm compression CLI in a portable Docker container.
353
Gozip is a lightweight, high‑performance compression utility supporting a wide range of modern and legacy algorithms.
This container provides a portable, zero‑dependency way to compress and decompress files using a unified CLI.
Gozip supports the following algorithms:
docker run --rm -v $(pwd):/work -w /work playground7/gozip:1.0.0-linux-amd64 \
compress -algo zstd input.txt output.gozip
docker run --rm -v $(pwd):/work -w /work playground7/gozip:1.0.0-linux-amd64 \
decompress input.gozip output.txt
# Compress using Brotli
docker run --rm -v $(pwd):/work -w /work playground7/gozip:1.0.0-linux-amd64 \
compress -algo brotli sample.txt sample.txt.gozip
Mount the working directory so the container can access your files:
-v $(pwd):/work -w /work
1.0.0-linux-amd641.0.0-linux-arm64This project is licensed under the MIT License. © 2026 Elias Hasnat
Content type
Image
Digest
sha256:f1b77dc8e…
Size
950.1 kB
Last updated
3 months ago
docker pull playground7/gozip:1.0.0-linux-arm64