Docker : Use Persistent Storage2018/11/07 |
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 .
docker images REPOSITORY TAG IMAGE ID CREATED SIZE storage latest efc7ae3451e0 3 seconds ago 1.15 MB web_server latest d983ccfa3da4 13 minutes ago 515 MB srv.world/fedora_httpd latest 797e290c206f 19 minutes ago 526 MB docker.io/busybox latest 59788edf1f3e 4 weeks ago 1.15 MB docker.io/fedora latest c582c1438f27 8 weeks ago 254 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 ~]#
[root@8f8eee0d1799 /]# docker run -it --name fedora_server --volumes-from storage_server fedora /bin/bash df -hT Filesystem Type Size Used Avail Use% Mounted on overlay overlay 75G 3.0G 73G 4% / 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 75G 3.0G 73G 4% /storage shm tmpfs 64M 0 64M 0% /dev/shm tmpfs tmpfs 3.9G 0 3.9G 0% /proc/acpi tmpfs tmpfs 3.9G 0 3.9G 0% /proc/scsi tmpfs tmpfs 3.9G 0 3.9G 0% /sys/firmware[root@8f8eee0d1799 /]# echo "persistent storage" >> /storage/testfile.txt [root@8f8eee0d1799 /]# ls -l /storage total 4 -rw-r--r--. 1 root root 19 Nov 6 08:05 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
df -hT Filesystem Type Size Used Avail Use% Mounted on overlay overlay 75G 3.0G 73G 4% / 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 75G 3.0G 73G 4% /mnt shm tmpfs 64M 0 64M 0% /dev/shm tmpfs tmpfs 3.9G 0 3.9G 0% /proc/acpi tmpfs tmpfs 3.9G 0 3.9G 0% /proc/scsi tmpfs tmpfs 3.9G 0 3.9G 0% /sys/firmware[root@d741184686e6 /]# cat /mnt/testfile.txt persistent storage |
Sponsored Link |