Menu system / "About"
Haut, Droite, Bas, Haut, Droite, Bas
ILI9331
elasticsearch admin tools running in a container
watch -n 0.5 "docker ps -q | xargs docker stats --no-stream"
rom / iso pc engine
docker registry manager in GO
If you expect that IP address might change you could go the extra mile and do something like
docker container run -e "DOCKER_HOST=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+')"
..., this way every time you run your container, it’ll have the IP address available inside the container set to the DOCKER_HOST environment variable.
KVM
lowriter --convert-to pdf *.doc
limitation bande passante
docker config version swarm
mongodb backup / restore
registry client, cli & web example
populating a postgres DB in a container
Using GlusterFS with Docker swarm cluster
Build secrets and SSH forwarding in Docker 18.09
raspberry image os light
dispos en 10x50
backup files from a docker volume into /tmp/backup.tar
function docker-volume-backup() {
docker run --rm -v /media/sf_Volumes/:/backup -v "$1":/tmp/data busybox tar -cvf /backup/backup.tar -C /tmp/data .
}
restore files from /tmp/backup.tar into a docker volume
function docker-volume-restore() {
docker run --rm -v /home/bouquet/Volumes:/backup -v "$1":/tmp/data busybox tar -xvf /backup/backup.tar -C /tmp/data
echo "Double checking files..."
docker run --rm -v /home/bouquet/Volumes:/backup -v "$1":/tmp/data busybox ls -lh /tmp/data
}