在Chef中运行docker

时间:2018-11-12 17:49:17

标签: linux docker chef redhat chef-recipe

我希望让Chef管理正在运行的Docker容器。但是我不确定如何前进。这是我今天使用的docker run命令,希望使其对Chef友好并将其移至我的食谱中

docker run --name=nginx--restart=unless-stopped -p 443:443 -p 80:80 --privileged=true -v /etc/php:/conf/stack -v /var/www/html -d repository.com/nginx:v1.5.3

有任何提示或想法吗?

1 个答案:

答案 0 :(得分:1)

您可以使用Chef's Supermarket的“官方” Docker食谱-https://supermarket.chef.io/cookbooks/docker

然后作为示例,您可以执行以下操作:

# Pull latest image
docker_image 'nginx' do
  tag 'latest'
  action :pull
  notifies :redeploy, 'docker_container[my_nginx]'
end

# Run container mapping containers port 80 to the host's port 80
docker_container 'my_nginx' do
  repo 'nginx'
  tag 'latest'
  port '80:80'
  host_name 'www'
  domain_name 'computers.biz'
  env 'FOO=bar'
  volumes [ '/some/local/files/:/etc/nginx/conf.d' ]
end