Questions tagged [docker-toolbox]

The Docker Toolbox is an installer to quickly and easily install and setup a Docker environment on your computer.

The Docker Toolbox is an installer to quickly and easily install and setup a Docker environment on your computer. Available for both Windows and Mac, the Toolbox installs Docker Client, Machine, Compose (Mac only), Kitematic and VirtualBox.

300 questions
2
votes
0 answers

How do you use a private registry with Docker?

I followed the tutorial https://docs.docker.com/get-started/part4/#deploy-the-app-on-the-swarm-manager And created my own registry…
Chloe
  • 25,162
  • 40
  • 190
  • 357
2
votes
1 answer

Docker unable to mount nginx

I'm having issues setting up Docker for the first time on a Windows using the Docker Toolbox. Everything works except nginx at the moment. Error message: ERROR: for web Cannot start service web: OCI runtime create failed: container_linux.go:348:…
Andrew
  • 441
  • 1
  • 7
  • 20
2
votes
0 answers

winpty consumes git bash shell

I have Windows 10. I can't enable Hyper V, so I'm using Docker Toolbox. My terminal of choice is git bash, which is a Msys2 terminal. Normally, everything works fine, except when I need an interactive terminal. For instance, docker login…
Kittsil
  • 2,349
  • 13
  • 22
2
votes
2 answers

docker toolbox Error response from daemon: Get https://registry-1.docker.io/v2/: x509: certific ate signed by unknown authority

I'm having error when trying to pull any images from docker hub. I use docker toolbox community edition on windows 8.1 Ex: when trying to pull images with command: docker pull ubuntu I get error response like this: Error response from daemon: Get…
Denny Rachmadi
  • 163
  • 1
  • 3
  • 15
2
votes
1 answer

How to create volume with absolute path from Windows?

Hi I am using Windows and Docker Toolbox have docker-compose.yml and I have Windows path which I have to add as volume of the container. I use Virtual box to create the Linux host. version: '3' db: boo-container: build: boo-container/ …
Xelian
  • 16,680
  • 25
  • 99
  • 152
2
votes
1 answer

Docker Toolbox - Shows the same website

I am new to Docker and I want to start an Apache Server with Docker. But it shows the same Website, even if I delete the whole directory and creating a new one ... My Dockerfile: FROM httpd:2.4 COPY ./HTML/ ./htdocs/ //in HTML/ are my html files…
Celebrombore
  • 170
  • 11
2
votes
2 answers

boot2docker: No route to host

I'm having trouble getting Docker Toolbox for Windows 10 working behind a company proxy. I can't get docker login or docker run to work, so here's what I've done to debug. I created an plain ubuntu machine within a virtual machine. On my host…
dwjohnston
  • 11,163
  • 32
  • 99
  • 194
2
votes
1 answer

Setting up Gitlab using Docker on Windows host, issue with shared folders

TLDR; Does anyone know how to solve the "Failed asserting that ownership of "/var/opt/gitlab/git-data" was git" error? Background: I want to set up the Gitlab Docker on WindowsServer2012R2 running Docker toolbox, version 17.04.0-ce, build…
2
votes
1 answer

Docker Toolbox port mapping not working

I have installed docker toolbox on a windows machine, after running a container with the following command, I didn't see anything listening on my host machine's specified port (82). docker run -ti -p 82:80 --name=container_alias…
Sajuuk
  • 2,667
  • 3
  • 22
  • 34
2
votes
2 answers

Docker Quickstart Terminal - fork: retry: No child processes

Installed Docker Toolbox for Windows but after running Docker Quickstart Terminal i get the error: Machine Information: Windows 10 Home x64; Docker Toolbox; Bash, Git installed;
BrunoMartinsPro
  • 1,646
  • 1
  • 24
  • 48
2
votes
1 answer

Volumes not mounting with docker-compose on docker toolbox for windows

I initially configured my docker setup for Docker for Windows. Everything worked great. I'm using docker-compose to define 3 containers, each of which have a volume being mapped from my ./src (path on host) to /src/ (path on container). I recently…
Luis Naranjo
  • 649
  • 7
  • 18
2
votes
0 answers

Can't restart a docker container that was created and worked via visual studio 2015's build

I'm a docker newbie. I have a web api dotnet core application (the default one). I'm running on windows 7 with the docker toolbox. I've configured my machine with all the ENV vars and when I run the application via visual studio, I see that the…
Amir Popovich
  • 29,350
  • 9
  • 53
  • 99
2
votes
1 answer

How to bundle docker toolbox, dockerfile, docker-compose file inside an executable file?

I want to create a windows executable file (.exe) which should install the docker toolbox (docker-machine,docker-compose,virtualbox) in windows. I should also have to bundle the docker-compose and dockerfiles inside the .exe file. So that once the…
Jugi
  • 1,244
  • 3
  • 23
  • 51
2
votes
2 answers

Docker doesn't save data in host mounted volume

I'm trying to start jenkins in a docker container using Docker Toolbox on Windows 7. I run docker run --name jenkins -p 8080:8080 -p 50000:50000 -v "//C/Users/myname/.jenkins:/var/jenkins_home" jenkins The jenkins starts up nicely, however there…
Urr4
  • 611
  • 9
  • 26
2
votes
1 answer

Is it possible to use docker remote API in the same fashion as regular API?

I want to copy local script files to a remote host and run one of them. On a local host I would use these commands: docker run -d python tail -f /dev/null docker cp ./ :/usr/local/bin/ docker exec python /usr/local/bin/script.py I'd like…
user2136963
  • 2,526
  • 3
  • 22
  • 41