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
5
votes
0 answers

how to call api endpoint inside docker container?

My action endpoints are usually http://localhost:50000/Method/egFunction but when I run the app on a docker container, I am not able to call the api endpoint, I get errors instead. I use docker-compose and here is my code (mongodb also doesn't work…
david benalal
  • 356
  • 5
  • 18
5
votes
1 answer

What does --virtualbox-hostonly-cidr do during docker machine creation?

Hi I want to create a Docker machine on Windows and have Docker Toolbox and have to execute this code ./docker-machine create -d virtualbox --virtualbox-boot2docker-url…
Xelian
  • 16,680
  • 25
  • 99
  • 152
5
votes
2 answers

Unable to start any container when Volumes are enabled Docker Toolbox

I am running Docker Toolbox v. 1.13.1a on Windows 7 Pro Service pack 1 x64OS. with Virtual Box Version 5.1.14 r112924 when I try to run any docker image e.g. official postgres image from Docker Hub with volumes disabled, it works fine! But when I…
user7353068
5
votes
2 answers

Is it possible to use Docker Toolbox on Visual Studio Code?

I have Windows 10 Home edition, therefore I had to install Docker Toolbox instead of Docker. I am using Visual Studio Code for development and it has extension for Docker Support (https://github.com/Microsoft/vscode-docker) which adds integration…
Konrad Klimczak
  • 1,474
  • 2
  • 22
  • 44
4
votes
1 answer

Connecting to local docker-compose container Windows 10

Very similar to this question, I cannot connect to my local docker-compose container from my browser (Firefox) on Windows 10 and have been troubleshooting for some time, but I cannot seem to find the issue. Here is my docker-compose.yml: version:…
Alerra
  • 1,479
  • 11
  • 25
4
votes
0 answers

docker-compose doesn't refresh volumes on file changes

I am using Docker Toolbox on Windows 10 Home. I am not able to see the changes in my code on the docker-container. My docker-compose.yml file looks like this version: "3.7" services: flask: build: ./flask container_name: flask …
Akash Aaron
  • 116
  • 1
  • 7
4
votes
0 answers

How to recover removed Docker images/containers after upgrading Docker Toolbox on Windows 7?

I had installed Docker Toolbox 18.03.0-ce on Windows 7 64-bit and had many pulled images and built containers. After upgrading Docker Toolbox to 18.09.1, there are no images and containers in results of these listings, but my networks, volumes and…
Hamid Rouhani
  • 2,309
  • 2
  • 31
  • 45
4
votes
2 answers

Windows docker-compose gives no output

I'm using Docker Toolbox in my Windows 10 Home Edition. I have a docker-compose.yml file and it was working good, but I did an update from Dell (a critical one in the BIOS) in my notebook and docker-compose command is not running anymore. When I run…
4
votes
0 answers

Docker Toolbox TLSParameterError

I was trying to use Docker Toolbox to develop a web page, so I did use docker-compose build but it gave me this issue Traceback (most recent call last): File "docker-compose", line 6, in File "compose\cli\main.py", line 71, in main …
4
votes
1 answer

rsync does not recognize windows path

I'm trying to build a docker container in windows 7 (Docker tool box with oracle VM) by running a shell script in git bash, and the script has the command with rsync like shown below: rsync -a --exclude='*/node_modules'…
Yajnesh Rai
  • 290
  • 1
  • 6
  • 17
4
votes
2 answers

Must specify at least one container source

I am trying to save a Docker image inside VM so that I can load to my windows. While saving the images, I got an error stating "permission is denied" to create a .tar file. docker save -o /mnt/sda1/var/lib/docker/tensorflow.tar…
dhinar1991
  • 831
  • 5
  • 21
  • 40
4
votes
5 answers

Docker toolbox with Visual studio - Volume sharing is not enabled

I'm trying to get running a docker support with Visual studio 2017 for a .net core 2.0 web app running on linux containers. I'm working on machine with win 7 OS, so I must use a Docker toolbox with Virtual box. I've already checked this question:…
Jan Muncinsky
  • 4,282
  • 4
  • 22
  • 40
4
votes
2 answers

Docker daemon not running in Docker toolbox

I created a sample microservice application with war file. After that I installed Docker tool box. Then I created sample Dockerfile and trying to build image using Docker toolbox quick start terminal. I changed directory to project root directory,…
Mr.DevEng
  • 2,651
  • 14
  • 57
  • 115
4
votes
2 answers

Issue to run curl command in windows 7 Docker Quickstart Terminal

I am trying out the steps for setting up a sample hyperledger fabric1.0 network as per the steps mentioned here on windows 7. As part of this I am following these steps for Hyperledger Fabric Samples. Since my OS is Windows7 64bit, I am using Docker…
4
votes
3 answers

Connecting to docker machine while connected through VPN in Windows 7

I am running docker-machine on Windows 7 as part of the docker toolbox When I run > docker-machine env SET DOCKER_TLS_VERIFY=1 SET DOCKER_HOST=tcp://192.168.99.100:2376 SET DOCKER_CERT_PATH=...\.docker\machine\machines\default SET…
Patrik Mihalčin
  • 3,341
  • 7
  • 33
  • 68