我意识到其他人有类似的问题,但这使用v2撰写文件格式,但我找不到任何相关的内容。
我想制作一个非常简单的测试应用程序来使用MemSQL,但我无法在docker-compose down
之后获得不被删除的卷。如果我已经理解了Docker Docs,那么在没有明确说明的情况下不应删除卷。所有内容似乎都与docker-compose up
一起使用,但在关闭后再向上,所有数据都会从数据库中删除。
正如良好做法所建议的那样,我使用单独的memsqldata服务作为单独的数据层。
这是我的docker-compose.yml:
version: '2'
services:
app:
build: .
links:
- memsql
memsql:
image: memsql/quickstart
volumes_from:
- memsqldata
ports:
- "3306:3306"
- "9000:9000"
memsqldata:
image: memsql/quickstart
command: /bin/true
volumes:
- memsqldatavolume:/data
volumes:
memsqldatavolume:
driver: local
答案 0 :(得分:18)
我意识到这是一个旧的解决线程,其中OP指向容器中的目录而不是它们已安装的卷,但是想要清除我看到的一些错误信息。
docker-compose down
不会删除卷,如果您还想删除卷,则需要运行docker-compose down -v
。这是直接来自docker-compose的帮助文本(请注意“默认情况下”列表):
$ docker-compose down --help
Stops containers and removes containers, networks, volumes, and images
created by `up`.
By default, the only things removed are:
- Containers for services defined in the Compose file
- Networks defined in the `networks` section of the Compose file
- The default network, if one is used
Networks and volumes defined as `external` are never removed.
Usage: down [options]
Options:
...
-v, --volumes Remove named volumes declared in the `volumes` section
of the Compose file and anonymous volumes
attached to containers.
...
$ docker-compose --version
docker-compose version 1.12.0, build b31ff33
这是一个示例yml,其中包含要测试的命名卷和一个虚拟命令:
$ cat docker-compose.vol-named.yml
version: '2'
volumes:
data:
services:
test:
image: busybox
command: tail -f /dev/null
volumes:
- data:/data
$ docker-compose -f docker-compose.vol-named.yml up -d
Creating volume "test_data" with default driver
Creating test_test_1
启动容器后,由于图像在该位置为空,因此将该卷初始化为空。我在那个位置创建了一个快速的hello世界:
$ docker exec -it test_test_1 /bin/sh
/ # ls -al /data
total 8
drwxr-xr-x 2 root root 4096 May 23 01:24 .
drwxr-xr-x 1 root root 4096 May 23 01:24 ..
/ # echo "hello volume" >/data/hello.txt
/ # ls -al /data
total 12
drwxr-xr-x 2 root root 4096 May 23 01:24 .
drwxr-xr-x 1 root root 4096 May 23 01:24 ..
-rw-r--r-- 1 root root 13 May 23 01:24 hello.txt
/ # cat /data/hello.txt
hello volume
/ # exit
音量在docker之外可见,并且在docker-compose down
:
$ docker volume ls | grep test_
local test_data
$ docker-compose -f docker-compose.vol-named.yml down
Stopping test_test_1 ... done
Removing test_test_1 ... done
Removing network test_default
$ docker volume ls | grep test_
local test_data
重新创建容器使用旧卷,文件仍然可见:
$ docker-compose -f docker-compose.vol-named.yml up -d
Creating network "test_default" with the default driver
Creating test_test_1
$ docker exec -it test_test_1 /bin/sh
/ # cat /data/hello.txt
hello volume
/ # exit
运行docker-compose down -v
最终会删除容器和卷:
$ docker-compose -f docker-compose.vol-named.yml down -v
Stopping test_test_1 ... done
Removing test_test_1 ... done
Removing network test_default
Removing volume test_data
$ docker volume ls | grep test_
$
如果您发现只有在使用停止/启动而不是向下/向上的情况下才会保留数据,那么您的数据将存储在容器(或可能是匿名卷)中,而不是存储在指定的卷中,并且容器不是持久的。确保容器内数据的位置正确,以避免这种情况。
要调试容器中存储数据的位置,我建议在容器上使用docker diff
。这将显示在该容器内创建,修改或删除的所有文件,这些文件在删除容器时将丢失。 E.g:
$ docker run --name test-diff busybox \
/bin/sh -c "echo hello docker >/etc/hello.conf"
$ docker diff test-diff
C /etc
A /etc/hello.conf
答案 1 :(得分:4)
这可以追溯到MemSQL的错误文档。 memsql/quickstart
容器中的MemSQL数据路径为/memsql
而不是/var/lib/memsql
,就像在独立安装中(以及在MemSQL文档中),并且绝对不像某人告诉我的那样/data
。
答案 2 :(得分:2)
您正在使用docker-compose down
,如果您查看文档here
停止容器并移除容器,网络,卷和图像 由
up
创建。默认情况下,仅删除容器和网络。
你是对的,它不应该删除卷(默认情况下)。它可能是一个错误,或者您可能已更改默认配置。但我认为正确的命令是docker-compose stop
。我将尝试使用down
命令的简化案例进行一些测试。
答案 3 :(得分:2)
不确定这是否有帮助。使用chmod 0777 -R cache/
时,会下载容器并创建图像。要停止泊坞窗图片,请使用docker-compose up -d
,图片将保留,并可以使用docker-compose down
我正在使用向上/向下命令并且一直在丢失我的数据,直到我尝试停止/启动并且现在数据仍然存在。
答案 4 :(得分:1)
最简单的解决方案是使用docker-compose stop
代替docker-compose down
。然后docker-compose start
重启。
根据docs,down
"停止容器并移除由其创建的容器,网络,卷和图像。"