简体   繁体   中英

Using docker on Mac. Is it possible to start docker daemon using docker-machine and pass in arguments?

I have a private repo that I need to pass in via the "--insecure-registry myprivateregistry:5000" argument that works fine in my linux environment via this command:

docker -d --insecure-registry myprivateregistry:5000

I'm not sure how to pass this is when I'm starting my MAC client however. I use docker-machine to start and stop my default instance, but I don't see how to pass in that option. Please help.

I figured it out. I need to add that as an extra argument in this file after I do a docker-machine ssh default (my running daemon):

/var/lib/boot2docker/profile 

EXTRA_ARGS='--insecure-registry myprivateregistry:5000'

Restart the docker daemon via docker-machine restart default and now I can connect!

This article was useful: Docker daemon config file on boot2docker / docker-machine / Docker Toolbox

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM