2016-05-10 76 views

回答

1

在其README.mddocker-api gem状态本文档:

require 'docker' 

# Create a Container. 
container = Docker::Container.create('Cmd' => ['ls'], 'Image' => 'base') 

# Attach to the Container. Currently, the below options are the only valid ones. 
# By default, :stream, :stdout, and :stderr are set. 
container.attach(:stream => true, :stdin => nil, :stdout => true, :stderr => true, :logs => true, :tty => false) 
# => [["bin\nboot\ndev\netc\nhome\nlib\nlib64\nmedia\nmnt\nopt\nproc\nroot\nrun\nsbin\nselinux\nsrv\nsys\ntmp\nusr\nvar", []] 

# If you wish to stream the attach method, a block may be supplied. 
container = Docker::Container.create('Image' => 'base', 'Cmd' => ['find/-name *']) 
container.tap(&:start).attach { |stream, chunk| puts "#{stream}: #{chunk}" } 
stderr: 2013/10/30 17:16:24 Unable to locate find/-name * 
# => [[], ["2013/10/30 17:16:24 Unable to locate find/-name *\n"]] 

# If you want to attach to stdin of the container, supply an IO-like object: 
container = Docker::Container.create('Image' => 'base', 'Cmd' => ['cat'], 'OpenStdin' => true, 'StdinOnce' => true) 
container.tap(&:start).attach(stdin: StringIO.new("foo\nbar\n")) 
# => [["foo\nbar\n"], []] 

这是否帮助?我能问你为什么试图使用docker-api?你不能只用docker volumes (-v)

+1

我真的不明白。您提供的示例中连接的本地音量在哪里?我只能在这些示例中找到stdout和stdin重定向? – nino

2

当前README错过了关于如何在容器中使用卷的部分。你应该罚款与以下命令与容器的文件夹中运行/foo

container = Docker::Container.create('Cmd' => %w[test -d /foo], 
    'Image' => 'debian:wheezy', 
    'Volumes' => {'/foo' => {}} 
) 

如果需要使用本地文件夹安装,更新Volumes' => {'/foo' => '/local_foo'} 您可以参考测试用例:

container_spec.rb

+1

这不起作用。当我尝试使用本地文件夹时,出现错误“json:无法将对象解组为类型的Go值”。我也检查了docker inspect,并且我看到当我使用选项-v时,它会在条目“Mounts”下添加一个条目,并且您提供的信息会在“Volumes” – nino

+0

下执行此操作。 github.com/swipely/dockly/blob/master/lib/dockly/build_cache/docker.rb#L61? – BMW

+0

和这个:https://github.com/swipely/docker-api/issues/344 – BMW