- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我如何执行相当于:
docker run -v /host/path:/container/path image:tag
从 Go 使用官方 docker 客户端包?
我试过不同的 Mounts和 Volumes client.ContainerCreate() function 的 HostOption 和 ConfigOption 结构中的选项, 但不太明白。
特别是 Volumes
成员(map[string]struct{}
类型)特别难搞清楚如何使用,我找不到关于结构中应该存在哪些值的任何文档。
演示我的问题的代码:
package main
import (
"context"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
//"github.com/docker/docker/api/types/mount"
"github.com/docker/docker/client"
"github.com/docker/docker/pkg/stdcopy"
"log"
"os"
"path/filepath"
)
func getThisDir() string {
dir, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err != nil {
panic(err)
}
return dir
}
func main() {
log.Println("Creating client")
cli, err := client.NewClientWithOpts(client.FromEnv)
if err != nil {
panic(err)
}
image := "ubuntu:18.04"
hostPath := getThisDir()
containerPath := "/host_files"
log.Printf(" Image: %s\n", image)
log.Printf(" Host Path: %s\n", hostPath)
log.Printf(" Container Path: %s\n", containerPath)
ctx := context.Background()
cli.NegotiateAPIVersion(ctx)
log.Println("Creating container")
var cont container.ContainerCreateCreatedBody
if cont, err = cli.ContainerCreate(
context.Background(),
&container.Config{
Image: image,
Entrypoint: []string{"/bin/bash", "-c", "ls -la " + containerPath},
Volumes: map[string]struct{}{
hostPath: {},
},
},
&container.HostConfig{
Runtime: "runsc",
/*
Mounts: []mount.Mount{
mount.Mount{
Type: mount.TypeVolume,
Source: hostPath,
Target: containerPath,
},
},
*/
},
nil,
"TEST_CONTAINER",
); err != nil {
panic(err)
}
defer func() {
log.Println("Cleaning up")
if err := cli.ContainerRemove(
context.Background(),
cont.ID,
types.ContainerRemoveOptions{
Force: true,
RemoveVolumes: true,
},
); err != nil {
panic(err)
}
}()
log.Println("Starting container")
if err = cli.ContainerStart(
context.Background(),
cont.ID,
types.ContainerStartOptions{},
); err != nil {
panic(err)
}
log.Println("Waiting for container to exit")
waitOk, waitErr := cli.ContainerWait(
ctx,
cont.ID,
container.WaitConditionNotRunning,
)
select {
case <-waitOk:
log.Println("Container exited normally!")
case err = <-waitErr:
log.Println("Error waiting")
panic(err)
}
log.Println("Should be done!")
logOutput, err := cli.ContainerLogs(
ctx,
cont.ID,
types.ContainerLogsOptions{
ShowStdout: true,
ShowStderr: true,
Follow: false,
},
)
if err != nil {
panic(err)
}
log.Println("Container output:")
stdcopy.StdCopy(os.Stdout, os.Stderr, logOutput)
}
编译并运行它会产生输出:
2019/04/16 20:42:21 Creating client
2019/04/16 20:42:21 Image: ubuntu:18.04
2019/04/16 20:42:21 Host Path: /home/user/go/src/test
2019/04/16 20:42:21 Container Path: /host_files
2019/04/16 20:42:21 Creating container
2019/04/16 20:42:22 Starting container
2019/04/16 20:42:22 Waiting for container to exit
2019/04/16 20:42:22 Container exited normally!
2019/04/16 20:42:22 Should be done!
2019/04/16 20:42:22 Container output:
ls: cannot access '/host_files': No such file or directory
2019/04/16 20:42:22 Cleaning up
如果取消注释与挂载相关的行,则会得到以下输出:
2019/04/16 20:23:32 Creating client
2019/04/16 20:23:32 Image: ubuntu:18.04
2019/04/16 20:23:32 Host Path: /home/user/go/src/test
2019/04/16 20:23:32 Container Path: /host_files
2019/04/16 20:23:32 Creating container
panic: Error response from daemon: create /home/user/go/src/test: "/home/user/go/src/test" includes invalid characters for a local volume name, only "[a-zA-Z0-9][a-zA-Z0-9_.-]" are allowed. If you intended to pass a host directory, use absolute path
goroutine 1 [running]:
main.main()
/home/user/go/src/test/container.go:66 +0xb0c
错误消息没有意义,因为我使用的是绝对路径。也许我应该重新阅读 ContainerCreate
的文档。
The docker engine API documentation包含有关卷的更多详细信息 - 我开始认为我对 docker -v/host/path:/container/path
的工作方式有误 - 也许这实际上是绑定(bind)安装而不是卷挂载。
Rubber duck debugging我想是的。删除 Volumes
设置,重新添加 Mounts
并将 Type
更改为 mount.TypeBind
使其工作:
2019/04/16 20:53:18 Creating client
2019/04/16 20:53:18 Image: ubuntu:18.04
2019/04/16 20:53:18 Host Path: /home/user/go/src/test
2019/04/16 20:53:18 Container Path: /host_files
2019/04/16 20:53:18 Creating container
2019/04/16 20:53:18 Starting container
2019/04/16 20:53:19 Waiting for container to exit
2019/04/16 20:53:19 Container exited normally!
2019/04/16 20:53:19 Should be done!
2019/04/16 20:53:19 Container output:
total XXXX
drwxr-xr-x 7 1000 1000 4096 Apr 17 03:51 .
drwxr-xr-x 34 root root 4096 Apr 17 03:53 ..
-rw-r--r-- 1 1000 1000 10390 Apr 16 12:16 Gopkg.lock
-rw-r--r-- 1 1000 1000 1021 Apr 16 12:16 Gopkg.toml
-rwxr-xr-x 1 1000 1000 12433827 Apr 17 03:53 container
-rw-r--r-- 1 1000 1000 2421 Apr 17 03:51 container.go
2019/04/16 20:53:19 Cleaning up
最佳答案
删除 Volumes
设置,重新添加 Mounts
并将 Type
更改为 mount.TypeBind
它有效:
2019/04/16 20:53:18 Creating client
2019/04/16 20:53:18 Image: ubuntu:18.04
2019/04/16 20:53:18 Host Path: /home/user/go/src/test
2019/04/16 20:53:18 Container Path: /host_files
2019/04/16 20:53:18 Creating container
2019/04/16 20:53:18 Starting container
2019/04/16 20:53:19 Waiting for container to exit
2019/04/16 20:53:19 Container exited normally!
2019/04/16 20:53:19 Should be done!
2019/04/16 20:53:19 Container output:
total XXXX
drwxr-xr-x 7 1000 1000 4096 Apr 17 03:51 .
drwxr-xr-x 34 root root 4096 Apr 17 03:53 ..
-rw-r--r-- 1 1000 1000 10390 Apr 16 12:16 Gopkg.lock
-rw-r--r-- 1 1000 1000 1021 Apr 16 12:16 Gopkg.toml
-rwxr-xr-x 1 1000 1000 12433827 Apr 17 03:53 container
-rw-r--r-- 1 1000 1000 2421 Apr 17 03:51 container.go
2019/04/16 20:53:19 Cleaning up
感叹。
我唯一不能 100% 确定的是 docker -v/host/path:/container/path image:tag
实际上是 绑定(bind)挂载, 或者不是。
关于docker - Golang docker library - 挂载主机目录卷,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55718603/
我正在尝试创建1-click快捷方式,以便在上小学时玩一些90年代的旧游戏。 我正在尝试将ISO挂载到特定驱动器 运行程序 确保已卸载驱动器,以清除下一个要清除的游戏 我是脚本新手,所以我不确定从哪里
我正在运行 docker compose 命令以在 docker 中运行应用程序。但是,yml 中定义的卷是空的。如果我挂载一个文件,它就可以工作。但是,当我从 Windows 挂载目录时,我可以看到
我有一个双向滚动的无限滚动列表。该列表显示每行 5 个项目的网格,表示一周 7 天中的 5 个工作日。日子是按月剥离的斑马线(甚至月份的颜色略深)。我想将月份标题放在网格左侧的一列中,从该月的第一天或
我在按照 qemu/linaro 教程尝试执行 qemu, https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Vir
我正在尝试挂载 cephfs,密码没问题: mount -t ceph ceph-mon:6789:/docker/mnt/cephfs -o name=admin,secret=admin-pass
我可以将 HDFS 目录(在 Ubuntu 中配置)挂载到 Windows 服务器的驱动器吗? 映射后,例如 H:\--->\home\user1\HDFSCreatedDir ,想使用普通的 Jav
我有一个由 500 个 linux 机器组成的集群,现在需要使用带有绑定(bind)选项的挂载资源(参见 man 8 mount)来支持 chroot jail 。安装点需要在引导后强制执行和维护。我
我在一些代码片段和 Requests documentation 中看到过类似的事情。 : import requests sess = requests.Session() adapter = re
嗨,我正在编写一个安装cgroup的应用程序,如下所示 mount("cgroup", "/sys/fs/cgroup", "tmpfs",0,NULL); 我可以执行此操作,但是我想添加一个检查以了
我希望使用 Powershell 获取 VHD 安装的驱动器号。我可以使用以下 cmdlet 挂载 VHD: Mount-VHD -Path d:/tmp.vhdx 安装工作正常,但是当我尝试获取驱动
我正在编写一个脚本来创建坐骑。我使用的系统命令是: sudo /bin/mount -soft -t smbfs -o username='{username}',password='{passwor
我正在尝试在多个用户之间共享 NFS 安装。我无法让它工作,因为我总是被拒绝访问。我可以挂载共享,但看不到文件。 导出是通过Heartbeat+Pacemaker进行的。我认为这没有什么区别,但这是导
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 已关闭 9 年前。 此问题似乎与 a specific programming problem, a sof
我最近全新安装了elementary OS,与Windows 8.1双启动。安装完成后,我编辑了eOS的fstab文件,使其自动在/mnt/Windows地址挂载一个ntfs分区。后来我关闭了笔记本电
我正在尝试在装有 Android 2.1 的模拟器上分析 Android 恶意软件。我想在执行可疑应用程序后分析文件权限和指纹。我知道,我可以使用 adb shell 来获取此信息,但我认为在执行例如
在使用 Webpack 和 Vue 编译项目后,当我打开一个使用 Vue 组件的页面时,我得到: [Vue warn]: Failed to mount component: template or
我正在使用 Linux Inotify 来检测程序上的 FS 事件。 当设备挂载到监控目录时如何通知我? 最佳答案 我不认为你可以用 inotify 来做到这一点。这是方法: 阅读uevents fr
有几篇文章对理解 Docker 的卷和数据管理非常有帮助。这两个尤其出色: http://container-solutions.com/understanding-volumes-docker/ h
我正在使用 mount -o bind /some/directory/here /foo/bar 我想用 bash 脚本检查 /foo/bar,看看它是否已经挂载?如果不是,则调用上面的 mount
我是一名优秀的程序员,十分优秀!