├── .dockerignore ├── Dockerfile ├── README.md ├── install └── usr └── local └── etc └── tarsnap.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | README.md 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmoz/tarsnap/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmoz/tarsnap/HEAD/README.md -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmoz/tarsnap/HEAD/install -------------------------------------------------------------------------------- /usr/local/etc/tarsnap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmoz/tarsnap/HEAD/usr/local/etc/tarsnap.conf --------------------------------------------------------------------------------