Ultra lightweight docker image for devops running in a fancy `oh-my-zsh` shell.
1M+
Ultra lightweight docker image for devops - based on alpine linux - running in a fancy oh-my-zsh shell.
You need another package? Let me know, send an e-mail or create a ticket on gitlab.com/bit3/docker-devops-tools.
Launch a shell with the volumes of another container to view, organize, and edit the files.
docker run --rm -it \
--volumes-from another-container \
bit3/devops-tools
Sync the files between two containers.
docker run --rm -it \
--volume volume_a:/volume_a \
--volume volume_b:/volume_b \
bit3/devops-tools rsync -av --delete /volume_a/ /volume_b/
For example, to back up the database files.
docker run --rm -it \
--volume /var/backup:/backup \
--volumes-from any-service \
bit3/devops-tools tar -cJf /backup/any-service-backup.tar.xz -C /path/to/files/to/backup .
docker run --rm -it \
--volume /var/backup:/backup \
--volumes-from any-service \
bit3/devops-tools tar -xJf /backup/any-service-backup.tar.xz -C /path/to/files/to/restore
Content type
Image
Digest
sha256:fe0159e2d…
Size
36.8 MB
Last updated
6 days ago
docker pull bit3/devops-tools