Fedora 26
Sponsored Link

Docker : Use Persistent Storage2017/07/30

 
When Container is removed, data in it are also lost, so it's necessary to use external filesystem in Container as persistent storage if you need.
[1]
This example is based on the environment that SELnux is Permissive or Disabled.
[2] For exmaple, create a Container only for using to save data as a storage server with an image busybox.
[root@dlp ~]#
vi Dockerfile
# create new

FROM busybox
MAINTAINER ServerWorld <admin@srv.world>

VOLUME /storage
CMD /bin/sh

# build image

[root@dlp ~]#
docker build -t storage .
[root@dlp ~]#
docker images

REPOSITORY                          TAG        IMAGE ID        CREATED             SIZE
storage                             latest     d823a1150f04    10 seconds ago      1.13 MB
docker.io/busybox                   latest     efe10ee6727f    11 days ago         1.13 MB
registry.fedoraproject.org/fedora   latest     7f17e6b4a386    4 weeks ago         232 MB

# generate a Container with any name you like

[root@dlp ~]#
docker run -it --name storage_server storage

/ #
exit
[3] To use the Container above as a Storage Server from other Containers, add an option [--volumes-from].
[root@dlp ~]#
docker run -it --name fedora_server --volumes-from storage_server fedora /bin/bash
[root@00a8e7e20ded /]#
df -hT

Filesystem              Type     Size  Used Avail Use% Mounted on
overlay                 overlay   15G  1.8G   14G  12% /
tmpfs                   tmpfs    3.9G     0  3.9G   0% /dev
tmpfs                   tmpfs    3.9G     0  3.9G   0% /sys/fs/cgroup
/dev/mapper/fedora-root xfs       15G  1.8G   14G  12% /storage
shm                     tmpfs     64M     0   64M   0% /dev/shm
tmpfs                   tmpfs    3.9G     0  3.9G   0% /sys/firmware

[root@00a8e7e20ded /]#
echo "persistent storage" >> /storage/testfile.txt

[root@00a8e7e20ded /]#
ll /storage

total 4
-rw-r--r--. 1 root root 19 Jul 31 05:13 testfile.txt
[4] Make sure datas are saved to run a Container of Storage Server like follows.
[root@dlp ~]#
docker start storage_server

[root@dlp ~]#
docker exec -it storage_server cat /storage/testfile.txt

persistent storage
[5] For other way to save data in external filesystem, it's possible to mount a directory on Docker Host into Containers.
# create a directory

[root@dlp ~]#
mkdir -p /var/lib/docker/disk01

[root@dlp ~]#
echo "persistent storage" >> /var/lib/docker/disk01/testfile.txt
# run a Container with mounting the directory above on /mnt

[root@dlp ~]#
docker run -it -v /var/lib/docker/disk01:/mnt fedora /bin/bash
[root@383ed4e4c251 /]#
df -hT

Filesystem              Type     Size  Used Avail Use% Mounted on
overlay                 overlay   15G  1.8G   14G  12% /
tmpfs                   tmpfs    3.9G     0  3.9G   0% /dev
tmpfs                   tmpfs    3.9G     0  3.9G   0% /sys/fs/cgroup
/dev/mapper/fedora-root xfs       15G  1.8G   14G  12% /mnt
shm                     tmpfs     64M     0   64M   0% /dev/shm
tmpfs                   tmpfs    3.9G     0  3.9G   0% /sys/firmware

[root@383ed4e4c251 /]#
cat /mnt/testfile.txt

persistent storage
Matched Content