Questions tagged [docker-machine]

docker-machine creates Docker Engines on your computer, on cloud providers, and/or in your data center, and then configures the Docker client to securely talk to them.

Once your Docker host has been created, it then has a number of commands for managing them:

  • Starting, stopping, restarting
  • Upgrading Docker
  • Configuring the Docker client to talk to your host

Source

1691 questions
0
votes
1 answer

Docker Container Microsoft/iis Username and Password

freshly pulled and started the officially IIS docker container from Microsoft. Works fine and i can browse the starting IIS page, but while trying to connect with IIS Server Manager i get asked about USERNAME and PASSWORD which is not provided. How…
user5955036
0
votes
1 answer

Docker container curl to web

I'm new in Docker world, and i have an issue. First i have a Google Compute Engine instance listening on ports 8080 and 4444, i can browse from my host and i see html code. Now i have a Google Container Engine with docker, and when i go into docker…
0
votes
1 answer

Docker container interact mode auto closing issue in docker-machine

I have installed Docker using Docker toolbox in my Windows 7. I have installed Cassandra container. I am able to interact with container by ( docker exec -it /bin/bash. after entering few commands in container , i am kicking out of the…
Gnana
  • 2,130
  • 5
  • 26
  • 57
0
votes
1 answer

Is there a way to detect programmatically whether a Docker container is running natively or using Docker Machine?

Is there a way to find out from inside a Docker container whether that container is running natively on a Linux host, or in Docker Machine? The background of the question is that I want to enable JMX in my Tomcat-based container, but for that, I…
nwinkler
  • 52,665
  • 21
  • 154
  • 168
0
votes
1 answer

Navigate / access docker-machine file system

I'm trying to access the file system of a container made with docker-machine. I've used the ssh command but it doesn't seem to have anything that will allow you to list files / folders (like ls). How would one explore the files currently on a…
Grey Vugrin
  • 455
  • 5
  • 12
0
votes
0 answers

Is it possible to organize cluster of docker machines in local network to improve resource utilization?

At work we have very powerful workstations and they are not utilized on 100%. Sometimes only IDE is running on them and a few browser windows. Is there a preferable way to organize a cluster of docker machines in our local network with service…
Ilya Khadykin
  • 290
  • 6
  • 14
0
votes
1 answer

How to set new folders inherit folder permission in Docker volume on Mac

I am using Docker-machine on Mac for a PHP application. My code is shored in mac, and shared to docker-machine as volume. This is my docker-compose.yml app: build: . volumes: - .:/var/www/html My PHP application will create a…
Anthony Tsang
  • 345
  • 1
  • 4
  • 13
0
votes
1 answer

Docker: can not access container host/port

I have a container ps -a de3ff650fbef tasklist-img "/bin/sh -c 'java -ja" 2 minutes ago Up 2 minutes 8080/tcp, 0.0.0.0:8080->8081/tcp tasklist-img-01 And could not access like localhost:8080/task-list When I…
Armen Arzumanyan
  • 1,939
  • 3
  • 30
  • 56
0
votes
1 answer

Specify network security group for docker-machine to use

I'm getting started using docker-machine on my Windows 2016 box. I'm trying to create some VMs in Azure but I have a particular network security group that I want for it to use and which already exists in Azure. I ran docker-machine create --driver…
sirdank
  • 3,351
  • 3
  • 25
  • 58
0
votes
1 answer

Docker swarm create command difference

I've been following the docker swarm instructions and come to the 'Launch the Swarm manager' section where I'm told to issue this command: docker-machine create -d virtualbox --swarm --swarm-master --swarm-discovery…
MysteriousWaffle
  • 439
  • 1
  • 5
  • 16
0
votes
1 answer

How do I run a docker container as a privileged user with user namespaces

I am running with user namespaces enabled and I need to run a particular container as a root user (the container needs to be able to execute the Linux mount command from inside). How do I run a specific container in privileged mode when namespaces…
steve landiss
  • 1,833
  • 3
  • 19
  • 30
0
votes
1 answer

How to install latest version of make in centos6.6 docker container

I want to have 3.82 or newer version of make in docker container for centos6.6 [root@046f4766b93f build]# make --version GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying…
user5154816
0
votes
1 answer

centos6.6 in Dockerfile gives error

I am trying to use centos6.6 in Dockerfile, I tried following both lines one by one in my Dockerfile: FROM centos:centos6.6 FROM centos:6.6 But getting this error while running docker: root@onl-dev:/distros/trial# docker run -it trial docker: Error…
user5154816
0
votes
1 answer

create file in shared folder docker container

When I try to create a file in a folder that is shared between the host and the container, I get the following error sh: can not create *.txt: Protocol error I have mac os, so I use docker-machine in virtualbox to run container. To summarize, I…
andolsi zied
  • 3,553
  • 2
  • 32
  • 43
0
votes
0 answers

docker-machine amazon-ec2 fail during init

I'm starting this script from my MacOS with docker 1.12.1, this script used to work ... But, now no way: I got a timeout during VM init, waiting for ssh connection?!! Here is my code: aws ec2 create-security-group --group-name ${group_name}…
1 2 3
99
100