我正在尝试将主机目录装载到Docker容器中,以便在主机上完成的任何更新都反映到Docker集装箱中。
我哪里做错了什么。以下是我所做的:
kishore$ cat Dockerfile
FROM ubuntu:trusty
RUN apt-get update
RUN apt-get -y install git curl vim
CMD ["/bin/bash"]
WORKDIR /test_container
VOLUME ["/test_container"]
kishore$树.├── Dockerfile文件└── 主文件夹├── tfile1.text├── tfile2.txt文件├── tfile3.txt文件└── tfile4.txt文件
1个目录,5个文件基肖尔$pwd/用户/kishore/tdockkishore$docker build--tag=k3_s3:最新。
Uploading context 7.168 kB
Uploading context
Step 0 : FROM ubuntu:trusty
---> 99ec81b80c55
Step 1 : RUN apt-get update
---> Using cache
---> 1c7282005040
Step 2 : RUN apt-get -y install git curl vim
---> Using cache
---> aed48634e300
Step 3 : CMD ["/bin/bash"]
---> Running in d081b576878d
---> 65db8df48595
Step 4 : WORKDIR /test_container
---> Running in 5b8d2ccd719d
---> 250369b30e1f
Step 5 : VOLUME ["/test_container"]
---> Running in 72ca332d9809
---> 163deb2b1bc5
Successfully built 163deb2b1bc5
Removing intermediate container b8bfcb071441
Removing intermediate container d081b576878d
Removing intermediate container 5b8d2ccd719d
Removing intermediate container 72ca332d9809
kishore$docker运行-d-v/Users/kishore/main_folder:/test_container k3_s3:最新c9f9a7e09c54ee1c2c966f15c963b4af320b5203b8c46689033c1ab8872a0漏洞$docker运行-i-t k3_s3:最新/bin/bash
root@0f17e2313a46:/test_container# ls -al
total 8
drwx------ 2 root root 4096 Apr 29 05:15 .
drwxr-xr-x 66 root root 4096 Apr 29 05:15 ..
root@0f17e2313a46:/test_container#退出exitkishore$docker-vDocker版本0.9.1,内部版本867b2a9
我不知道如何检查boot2docker版本
问题和面临的问题:
如何将main_folder链接到docker容器中的test_container文件夹?我需要自动完成。如何在不真正使用run-d-v命令的情况下做到这一点?如果boot2docker崩溃会发生什么?Docker文件存储在哪里(除了Dockerfile)?
有几种方法可以做到这一点。最简单的方法是使用dockerfile ADD命令,如下所示:
ADD . /path/inside/docker/container
但是,在构建dockerfile之后,在主机上对该目录所做的任何更改都不会显示在容器中。这是因为在构建容器时,docker将目录压缩为.tar,并将该上下文永久上传到容器中。
第二种方法是尝试装载卷。由于尽可能地可移植,您无法将主机目录映射到dockerfile中的docker容器目录,因为主机目录可能会根据您正在运行的计算机而改变。要将主机目录映像到docker容器,您需要在使用dockerrun时使用-v标志,例如:
# Run a container using the `alpine` image, mount the `/tmp`
# directory from your host into the `/container/directory`
# directory in your container, and run the `ls` command to
# show the contents of that directory.
docker run \
-v /tmp:/container/directory \
alpine \
ls /container/directory
如何将main_folder链接到docker容器中的test_container文件夹?
下面的命令是正确的,除非您在mac上使用boot2docker(取决于将来的更新),否则您可能会发现文件夹为空。有关更正此问题的教程,请参见mattes答案。
docker run -d -v /Users/kishore/main_folder:/test_container k3_s3:latest
我需要自动运行,如何做到这一点使用run-d-v命令。
你真的离不开使用这些命令,它们是docker工作方式的内在特征。最好将它们放在shell脚本中,以避免重复编写。
如果boot2docker崩溃会发生什么?docker文件存储在哪里?
如果您设法使用-v arg并引用主机,则文件在主机上是安全的。
如果您使用了“docker build-t myimage”使用Dockerfile,您的文件将被烘焙到图像中。
我相信你的docker映像存储在boot2docker vm中。当我从VirtualBox中删除虚拟机时,我的图像消失了,我发现了这一点。(注意,我不知道Virtualbox是如何工作的,所以图像可能仍然隐藏在其他地方,只是docker看不到)。
[更新]截至2017年6月,Docker for Mac解决了其中所有令人讨厌的部分,您必须使用VirtualBox。它允许您使用/private前缀基本上映射本地主机上的所有内容。更多信息请点击此处。[/UPDATE]
目前所有的答案都是关于Boot2docker的。由于现在不赞成使用docker机器,这适用于docker机器:
首先,ssh到docker机器vm中,并创建要映射到的文件夹:
docker-machine ssh $MACHINE_NAME "sudo mkdir -p \"$VOL_DIR\""
现在将文件夹共享到VirtualBox:
WORKDIR=$(basename "$VOL_DIR")
vboxmanage sharedfolder add "$MACHINE_NAME" --name "$WORKDIR" --hostpath "$VOL_DIR" --transient
最后,再次ssh到docker机器中,并装载刚才共享的文件夹:
docker-machine ssh $MACHINE_NAME "sudo mount -t vboxsf -o uid=\"$U\",gid=\"$G\" \"$WORKDIR\" \"$VOL_DIR\""
注意:对于UID和GID,基本上可以使用任何整数,只要它们还没有使用。
这在OS X El Capitan上从docker机器0.4.1和docker 1.8.3开始测试。
这个问题的用户使用的是Docker版本0.9.1,构建867b2a9,我将为您提供Docker版本>=17.06的答案。
您所希望的,保持本地目录在容器目录中同步,是通过使用类型bind装载卷来实现的。这将绑定源(您的系统)和目标(docker容器)目录。这几乎与在linux上安装目录相同。
根据Docker文档,现在适当的mount命令是mount而不是-v。以下是其文档:
--mount:由多个键值对组成,用逗号分隔。每个键/值对采用<key>=<value>元组的形式。--mount语法比-v或--volume更详细,但键的顺序并不重要,标志的值更容易理解。装载的类型,可以是bind、volume或tmpfs。(我们将使用bind)装载源。对于绑定装载,这是Docker守护程序主机上文件或目录的路径。可以指定为source或src。目标将文件或目录装入容器的路径作为其值。可以指定为destination、dst或target。
因此,要使用/test_container(目标)装载当前目录(源),我们将使用:
docker run -it --mount src="$(pwd)",target=/test_container,type=bind k3_s3
如果这些装载参数有空格,则必须在它们周围加引号。当我知道他们不知道时,我会用“pwd”代替:
docker run -it --mount src=`pwd`,target=/test_container,type=bind k3_s3
您还需要处理文件权限,请参阅本文。
下面是一个Windows路径示例:
docker run -P -it --name organizr --mount src="/c/Users/MyUserName/AppData/Roaming/DockerConfigs/Organizr",dst=/config,type=bind organizrtools/organizr-v2:latest
顺便说一句,在所有这些拉扯头发的过程中,我不得不一次又一次地计算和重新键入路径,我决定编写一个小的AutoHotkey脚本,将Windows路径转换为“Docker Windows”格式的路径。这样,我所要做的就是将任何我想用作装载点的Windows路径复制到剪贴板,按下键盘上的“应用程序键”,它就会将其格式化为Docker喜欢的路径格式。
例如:
将此复制到剪贴板:
C: \Users\My PC\AppData\Roaming\DockerConfigs\Organizr
当光标位于命令行上的所需位置时,按下Apps键,它会将其粘贴在那里:
“/c/Users/My PC/AppData/Roaming/DockerConfigs/Organizr”
为我节省了很多时间。这是给其他可能觉得有用的人的。
; --------------------------------------------------------------------------------------------------------------
;
; Docker Utility: Convert a Windows Formatted Path to a Docker Formatter Path
; Useful for (example) when mounting Windows volumes via the command-line.
;
; By: J. Scott Elblein
; Version: 1.0
; Date: 2/5/2019
;
; Usage: Cut or Copy the Windows formatted path to the clipboard, press the AppsKey on your keyboard
; (usually right next to the Windows Key), it'll format it into a 'docker path' and enter it
; into the active window. Easy example usage would be to copy your intended volume path via
; Explorer, place the cursor after the "-v" in your Docker command, press the Apps Key and
; then it'll place the formatted path onto the line for you.
;
; TODO:: I may or may not add anything to this depending on needs. Some ideas are:
;
; - Add a tray menu with the ability to do some things, like just replace the unformatted path
; on the clipboard with the formatted one rather than enter it automatically.
; - Add 'smarter' handling so the it first confirms that the clipboard text is even a path in
; the first place. (would need to be able to handle Win + Mac + Linux)
; - Add command-line handling so the script doesn't need to always be in the tray, you could
; just pass the Windows path to the script, have it format it, then paste and close.
; Also, could have it just check for a path on the clipboard upon script startup, if found
; do it's job, then exit the script.
; - Add an 'all-in-one' action, to copy the selected Windows path, and then output the result.
; - Whatever else comes to mind.
;
; --------------------------------------------------------------------------------------------------------------
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
AppsKey::
; Create a new var, store the current clipboard contents (should be a Windows path)
NewStr := Clipboard
; Rip out the first 2 chars (should be a drive letter and colon) & convert the letter to lowercase
; NOTE: I could probably replace the following 3 lines with a regexreplace, but atm I'm lazy and in a rush.
tmpVar := SubStr(NewStr, 1, 2)
StringLower, tmpVar, tmpVar
; Replace the uppercase drive letter and colon with the lowercase drive letter and colon
NewStr := StrReplace(NewStr, SubStr(NewStr, 1, 2), tmpVar)
; Replace backslashes with forward slashes
NewStr := StrReplace(NewStr, "\", "/")
; Replace all colons with nothing
NewStr := StrReplace(NewStr, ":", "")
; Remove the last char if it's a trailing forward slash
NewStr := RegExReplace(NewStr, "/$")
; Append a leading forward slash if not already there
if RegExMatch(NewStr, "^/") == 0
NewStr := "/" . NewStr
; If there are any spaces in the path ... wrap in double quotes
if RegExMatch(NewStr, " ") > 0
NewStr := """" . NewStr . """"
; Send the result to the active window
SendInput % NewStr
您也可以使用Portiner web应用程序来实现这一点,以获得不同的视觉体验。
首先拉动Portiner图像:
docker pull portainer/portainer
然后为Portiner创建一个卷:
docker volume create portainer_data
还要创建Portiner容器:
docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
您将能够使用浏览器访问web应用程序,网址为:“http://localhost:9000“.第一次登录时,系统将提示您设置Portiner管理员凭据。
在web应用程序中,遵循以下菜单和按钮:(容器>添加容器>填充设置>部署容器)
我很难用Portiner创建“装载”卷,我意识到在创建容器卷时必须单击“绑定”。下面是一个卷绑定设置的示例,该设置适用于我的容器创建,其中装载的卷绑定到主机。
备注:我使用Docker 19.035和Portiner 1.23.1
使用命令行:
docker run -it --name <WHATEVER> -p <LOCAL_PORT>:<CONTAINER_PORT> -v <LOCAL_PATH>:<CONTAINER_PATH> -d <IMAGE>:<TAG>
使用docker-compose.yaml:
version: '2'
services:
cms:
image: <IMAGE>:<TAG>
ports:
- <LOCAL_PORT>:<CONTAINER_PORT>
volumes:
- <LOCAL_PATH>:<CONTAINER_PATH>
假设:
图片:k3_s3标签:最新本地端口:8080容器端口:8080LOCAL_PATH:/要装载的卷容器路径:/mnt
示例:
首先创建要装载的/卷。(如果存在,则跳过)
$ mkdir -p /volume-to-mount
docker compose-f docker-compose.yaml up-d
version: '2'
services:
cms:
image: ghost-cms:latest
ports:
- 8080:8080
volumes:
- /volume-to-mount:/mnt
验证容器:
docker exec -it CONTAINER_ID ls -la /mnt
从官方网站引用:
确保之前没有运行任何入门容器。从应用程序目录运行以下命令。
x86-64 Mac或Linux设备:码头运行-dp 3000:3000\-w/app-v“$(pwd):/app”\节点:12高山\sh-c“纱线安装和纱线运行开发”Windows(PowerShell):码头运行-dp 3000:3000`-w/app-v“$(pwd):/app”`节点:12高山`sh-c“纱线安装和纱线运行开发”Aple silicon Mac或其他ARM64设备:码头运行-dp 3000:3000\-w/app-v“$(pwd):/app”\节点:12高山\sh-c“apk add--无缓存python2g++make&&yarn install&&yarn run-dev”
解释:
dp 3000:3000-与之前相同。以分离(后台)模式运行并创建端口映射w/app-设置运行命令的“工作目录”或当前目录v“$(pwd):/app”-将当前目录从主机绑定到容器中的/app目录节点:12 alpine-要使用的图像。
注意,这是Dockerfile sh-c“yarn install&&yarn run dev”命令中应用程序的基本映像。
我们正在使用sh(alpine没有bash)启动一个shell,并运行yarn install来安装所有依赖项,然后运行yarn run dev。如果我们查看package.json,我们将看到dev脚本正在启动nodemon。