基本上我已经看到了四种不同的方式来管理docker容器中的数据
据我了解,备选方案3和4是最推荐的方法,但我想知道不同方法的优点/缺点是什么?
一些代码来说明我的意思:
数据容器
docker create -v /dbdata --name dbstore training/postgres /bin/true
docker run -d --volumes-from dbstore --name db1 training/postgres
数据量
在此解释:https://docs.docker.com/engine/reference/commandline/volume_create/
使用不同的"码头工作量"用于维护卷的命令
docker volume create --name hello
docker run -d -v hello:/world busybox ls /world
USECASE
将jira,bitbucket,jenkins,sonar和nexus作为docker容器运行,可以尽可能简单可靠地备份应用程序数据: - )