#27 Docker Tutorial | Docker Volume

Опубликовано: 08 Сентябрь 2020
на канале: One Minute Notes
119
10

See complete series on Docker here:
   • Playlist  

Note: To attach multiple volumes to container use -v/--mount flag more than once

Volumes are stored in a part of the host filesystem which is managed by Docker (/var/lib/docker/volumes/ on Linux). Non-Docker processes should not modify this part of the filesystem. Volumes are the best way to persist data in Docker

Sharing with 1 or more Containers: allowed

Commands:
$ docker run -d \
--name devtest \
--mount source=myvol2,target=/my/path \
nginx:latest

$ docker run -d \
--name devtest \
-v myvol2:/app \
nginx:latest

Reference: https://docs.docker.com/storage/volumes/
-----------------
To Support Us
Like, Share, Subscribe


Смотрите видео #27 Docker Tutorial | Docker Volume онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь One Minute Notes 08 Сентябрь 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 119 раз и оно понравилось 10 людям.