drnybble

Results 9 comments of drnybble

Status? I'd like to use an official image on Windows

@thaJeztah It seems to me that having a service name resolve through DNS only when at least one replica is healthy is a design mistake. Software expects that configured hostnames...

Here is what I am doing (read it & weep): - create the services with 0 replicas - extract the VIP from the service definition (docker service inspect...) ``` function...

Maybe related? https://github.com/moby/moby/issues/30512

Interested in this capability with Windows Containers. Can't ship a 5GB base image to customers. I have found that you can edit the .tar file, remove the base image layers...

@cpuguy83 docker save includes the 7.5GB/2.5GB layers that make up microsoft/windowsservercore. Microsoft supplemental license terms permit redistribution if you meet the conditions in the license. https://hub.docker.com/r/microsoft/windowsservercore/

@shin- This buggy version is now in the latest release of Docker Toolbox!

Docker Toolbox 18.09 released and still has this problem!

More general workaround ``` function myscp() { src=$1 dst=$2 sshport=$(docker-machine inspect --format {{.Driver.SSHPort}} ${DOCKER_MACHINE_NAME}) sshkeypath=$(docker-machine inspect --format {{.Driver.SSHKeyPath}} ${DOCKER_MACHINE_NAME}) scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -3 -o IdentitiesOnly=yes -o...