Accessing docker host from (jenkins) docker container

前端 未结 3 561
名媛妹妹
名媛妹妹 2021-01-15 05:51

I need to run docker commands from jenkins which is installed as a container on docker. My local setup is on an OSX and I use boot2docker to virtualize the docker machine.

相关标签:
3条回答
  • 2021-01-15 06:21

    As @ISanych suggests you can simply do -v /var/run/docker.sock:/var/run/docker.sock and it will also magically work on boot2docker. No need to define DOCKER_URL.

    You might also find --net=host useful if need to access the ports of the started containers.

    0 讨论(0)
  • 2021-01-15 06:25

    I ran into exact same problem with my Jenkins docker plugin. Docker uses tls by default but docker plugin only supports http. What I did is disabling TLS verification on the docker machine. My docker machine is an Ubuntu so the docker conf file is under /etc/default/docker. Inside the conf file, you can disable TLS by adding

    --tls=false 
    

    in DOCKER_OPTS. Something like:

    DOCKER_OPTS='-H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --tls=false'
    
    0 讨论(0)
  • 2021-01-15 06:26

    This should probably be a comment on the previous answer, but that does not seem possible. This is just a note to remind folks that listening on 0.0.0.0 means listening on whatever publicly routable interfaces might be connected to any physical or virtual network interface configured on your system. Prudence suggests limiting your exposure to only an internal network, less likely to encounter hostile forces with ill intent.

    0 讨论(0)
提交回复
热议问题