Questions tagged [docker-machine]
47 questions
1
vote
0 answers
Security maintenance on cloud instances created with docker-machine?
After reading about some people's issue with Docker hosts' time going out of sync, I realized that my Docker host on Digital Ocean (created via docker-machine) may want ntp running on it, and that got me thinking about system updates to the Docker…

Dolan Antenucci
- 329
- 1
- 4
- 16
1
vote
1 answer
Zero downtime deployment with two machines and docker-networking
Is it possible to wire up a small zero downtime deployment (*1) with two Amazon EC2 instances? I'd like to roll my services regularly to a new EC2 instance to avoid manual OS updates on the instances itself.
EC2-1: application serivces
EC2-2:…

alsdkjasdlkja
- 127
- 4
1
vote
2 answers
Tag latest not found in repository docker.io/library/nginx
I am trying to install Docker on my MAC . I am getting the below issue
predix-docker xxxxxx $ docker pull nginx
Using default tag: latest
latest: Pulling from library/nginx
968c69f18673: Pulling fs layer
963493e54e68: Layer already being pulled…

Warrior
- 223
- 1
- 5
- 11
1
vote
1 answer
How could I limit memory and cpu usage in Docker globally
I'm using Docker with Ubuntu in a development environment, but I noticed that docker can use all the resources of the host machine, is there any way I can limit this without having to configure each of the containers?
I tried to configure the docker…

Ediano Silva Santos
- 13
- 3
1
vote
1 answer
How to set PID limit for containers in kubernetes
I have used docker-bench-security on one of the kube-node to check best practices, I found one warning that PID limit is not set on containers.
So Please provide a solution that how do I set PID limit for container in Kubernetes.

Radheyshyam Sen
- 33
- 1
- 5
1
vote
0 answers
Docker external network affecting local host network on container restart : ERR_NETWORK_CHANGED
I am facing a weird issue with the docker networks. I am using an external network of bridge type named extenal_network in my docker containers with auto-restart enabled. I am not able to access my host network if any of the containers restarts due…

Ankur Mahajan
- 111
- 3
0
votes
1 answer
dpkg throws an error when regenerating certs of my instance on AWS
I'm trying to regenerate certs for my instance on AWS through Docker-Machine as I do need to do it quite often for some reason. All of the sudden I'm getting this error after running docker-machine regenerate-certs [instance]:
Error running…

Mark
- 1
0
votes
3 answers
Can't create EC2 instance with Keypairs for ssh access
I am trying to launch a new EC2 instance with docker installed on it on AWS. Later on I need to ssh into this instance. I can create it without a problem doing:
docker-machine create --driver amazonec2 --amazonec2-region=eu-central-1…

Micromegas
- 231
- 3
- 12
0
votes
1 answer
Access docker machine on LAN Computers
I had a virtual machine with Ubuntu which is installed inside windows 10 host and accessible to all pcs in LAN using its IP address. Inside Ubuntu I'm running the docker containers within docker-machine. And Docker machine is only accessible in…

Kathak Dabhi
- 101
- 3
0
votes
1 answer
Connecting to docker-engine on remote mac using docker-machine
I have a MacMini that is sitting in the server room which has a docker for mac running on it. I'm able to use docker directly on the machine when I ssh in just fine.
$ docker --version …

whobutsb
- 249
- 2
- 3
- 6
0
votes
1 answer
Trying to redirect a docker container to another through nginx
As the title say trying to reverse proxy.
Using an app with port 500 inside container with port exposed for 5000.
The nginx is on another container with port 80 exposed and publish to 8080.
Both containers are in the same network that I've…

Radaeld
- 1
- 1
- 3
0
votes
1 answer
How to remotely deploy Docker services on an existing Digital Ocean droplet?
I've got a docker-compose.yml file which defines 3 services: MySQL db, ASP.NET Core api application and Angular application. The last two images are built locally, not pulled from a remote repository. How am I supposed to log in from my local…

vter
- 101
- 2
0
votes
1 answer
Windows and WSL docker-machine conflict
I have a windows 10 and I installed the WSL ubuntu 18.04 inside. Since the WSL can't use the docker due to virtualization, i ends up use my DigitalOcean droplet as my docker machine target. I follow the guide of setting up the docker machine here:…

Hans Yulian
- 111
- 5
0
votes
0 answers
Docker Swarm Mesh not working on mixed Win7 / Linux cluster
I've got a mixed Docker Swarm Cluster with Linux machines and Win7 machines running VirtualBox via NAT (bridged option is not allowed).
Win7 Win7
| |
(port forwarding on 7946tcp/udp, 2377tcp, 4789udp)
| …

Frankie
- 429
- 1
- 6
- 20
0
votes
1 answer
how docker handles high availability
Coming from a VMware environment, my through process was that,
Multiple Docker machines (swarm), mount the same NFS data stores
A container (e.g. Maria dB) is deployed on the Docker swarm
If a node in the swarm fails, the service is still running…

aristosv
- 147
- 4
- 14