Skip to content

kyo1/docker-tarlz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

docker-tarlz

A Dockerfile of tarlz, which is an archiver with lzip.

How to build a image

$ git clone https://github.com/kyo1/docker-tarlz.git
$ cd docker-tarlz
$ docker build --no-cache -t tarlz .

How to use

See help with the following command.

$ docker run -it --rm -v "$(pwd)":/usr/src tarlz --help

The examples are the following.

# Create a new compressed archive from files
$ docker run -it --rm -v "$(pwd)":/usr/src tarlz -9 -cvf files.tar.lz file1 file2 file3 ...

# Extract all files from an archive
$ docker run -it --rm -v "$(pwd)":/usr/src tarlz -xvf files.tar.lz

# List the contents of an archive
$ docker run -it --rm -v "$(pwd)":/usr/src tarlz -tvf files.tar.lz

# Append files to an archive
$ docker run -it --rm -v "$(pwd)":/usr/src tarlz -rvf files.tar.lz file1 file2 file3 ...

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published