docker:persistent_storage
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
docker:persistent_storage [2020/04/16 08:17] – created peter | docker:persistent_storage [2020/05/13 08:48] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Docker - Persistent Storage ====== | ||
- | |||
- | <WRAP todo> | ||
- | TODO... | ||
- | </ | ||
- | |||
- | |||
- | The approach that seems to work best for production is to use a **data only container**. | ||
- | |||
- | The data only container is run on a barebone image and actually does nothing except exposing a data volume. | ||
- | |||
- | Then you can run any other container to have access to the data container volumes: | ||
- | |||
- | <code bash> | ||
- | docker run --volumes-from data-container some-other-container command-to-execute | ||
- | </ | ||
- | |||
- | * [[http:// | ||
- | * [[http:// | ||
- | UPDATE: | ||
- | |||
- | In [[http:// | ||
- | |||
- | UPDATE 2: | ||
- | |||
- | [[https:// | ||
- | |||
- | UPDATE 3: | ||
- | |||
- | Updated docs with backup/ | ||
- | |||
- | BACKUP: | ||
- | |||
- | <code bash> | ||
- | sudo docker run --rm --volumes-from DATA -v $(pwd):/ | ||
- | </ | ||
- | |||
- | * --rm: remove the container when it exits | ||
- | * --volumes-from DATA: attach to the volumes shared by the DATA container | ||
- | * -v $(pwd):/ | ||
- | * busybox: a small simpler image - good for quick maintenance | ||
- | * tar cvf / | ||
- | |||
- | RESTORE: | ||
- | |||
- | <code bash> | ||
- | # create a new data container | ||
- | $ sudo docker run -v /data -name DATA2 busybox true | ||
- | # untar the backup files into the new container᾿s data volume | ||
- | $ sudo docker run --rm --volumes-from DATA2 -v $(pwd):/ | ||
- | data/ | ||
- | data/ | ||
- | # compare to the original container | ||
- | $ sudo docker run --rm --volumes-from DATA -v `pwd`:/ | ||
- | sven.txt | ||
- | </ | ||
- | |||
- | UPDATE 4 | ||
- | |||
- | A nice [[http:// | ||
- | |||
- | UPDATE 5 | ||
- | |||
- | Docker 1.9.0 has new volume API! | ||
- | |||
- | <code bash> | ||
- | docker volume create --name hello | ||
- | docker run -d -v hello:/ | ||
- | </ | ||
- | |||
- | this means that the data only container pattern must be abandoned in favour of the new volumes. | ||
- | |||
- | Actually the volume API is only a better way to achieve what was the data-container pattern. | ||
- | |||
- | If you create a container with a **-v volume_name:/ | ||
- | |||
- | - Be listed through the **docker volume ls**. | ||
- | - Be identified through the **docker volume inspect volume_name**. | ||
- | - Backed up as a normal dir. | ||
- | - Backed up as before through a **< | ||
- | |||
- | The new volume api adds a useful command that let you identify dangling volumes: | ||
- | |||
- | <code bash> | ||
- | docker volume ls -f dangling=true | ||
- | </ | ||
- | |||
- | And then remove it through its name: | ||
- | |||
- | <code bash> | ||
- | docker volume rm <volume name> | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== References ===== | ||
- | |||
- | http:// | ||
- | |||
- | http:// | ||
- | |||
docker/persistent_storage.1587025042.txt.gz · Last modified: 2020/07/15 09:30 (external edit)