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
0
votes
1 answer

Why is this code showing me the following error: ModuleNotFoundError: No module named 'cride'?

Im doing the platzi advanced django course. This course use docker-compose, the thing is, when i call "$docker-compose -f local.yml up" using the bash it shoms me the "ModuleNotFoundError : No module named 'cride'" i have no idea why this erros is…
Jean
  • 91
  • 1
  • 5
0
votes
1 answer

Getting a Docker x509 Certificate Error after upgrade

I recently migrated my dev environment from Windows Home to Pro and as part of the upgrade installed Docker Desktop instead of using Docker Toolbox. After the upgrade, using the default Docker Desktop instance I kept receiving some variation on the…
plantpowerjames
  • 375
  • 2
  • 10
  • 22
0
votes
1 answer

MySQL Connection Timed Out using Docker toolbox

I am trying to set up a CakePHP project on my personal computer. Everything seems to works as expected except I not able to connect to MySQL. CakePHP keeps outputting this error message: Database Error PDOException Documentation API Error:…
Paul Trimor
  • 320
  • 3
  • 15
0
votes
1 answer

Set docker toolbox container to receive information sended to host

I have a prototype that sends information to the host machine, and with Docker for Windows, the container grabs that information and everything works fine. My docker-compose.yml file: version: '3' services: middleware: container_name:…
Victor Callejas
  • 457
  • 7
  • 17
0
votes
0 answers

Running docker via Docker Toolbox + kitematic in Windows 7 behind corporate Proxy and private repo

I am trying to run docker from private hub via Docker Toolbox for Windows + kitematic in Windows 7. I run kinematic and from there Docker Cli. My PC is behind corporate Proxy. Before starting kitematic I do: SET HTTP_PROXY=http://MYPROXY:8080 SET…
YerivanLazerev
  • 353
  • 3
  • 17
0
votes
0 answers

How to distinguish between Docker Toolbox and Docker for Mac/Windows?

Is it possible to distinguish whether a user is using Docker Toolbox or Docker for Mac/Windows? I've already seen this. In order to do some tests, now I have both Docker for Mac and Docker Toolbox installed and running. I can run Docker for Mac…
se7entyse7en
  • 4,310
  • 7
  • 33
  • 50
0
votes
1 answer

Creating Springboot image with Docker took box on windows 10 using spotify maven plugin

I use docker tool box in my windows 10 home laptop. Trying to create a docker image using the springboot project I have been working on. Followed the tutorial at https://spring.io/guides/gs/spring-boot-docker/ Have been struggling with the error for…
saru10
  • 87
  • 3
  • 10
0
votes
2 answers

Unable to run pull Docker Image behind proxy using Toolbox on Windows

I am not able to pull docker images behind corp proxy. I get the error - docker pull owasp/zap2docker-stable Using default tag: latest Warning: failed to get default registry endpoint from daemon (error during connect: Get…
Prateek Narendra
  • 1,837
  • 5
  • 38
  • 67
0
votes
1 answer

Configure Docker with proxy per host/url

I use Docker Toolbox on Windows 7 in a corporate environment. My workflow requires pulling containers from one artifactory and pushing them to a different one (eg. external and internal). Each artifactory requires a different proxy to access it. Is…
Levi Haskell
  • 795
  • 8
  • 20
0
votes
0 answers

Is it possible to run again docker containers on windows 10 machine after restart of docker toolbox?

I have to restart my windows 10 machine from time to time and it is annoying to reinstall my containers again. Is there away to restart all previous containers after the restart of windows 10 and docker toolbox and not to reinstall containers?
Galkin
  • 791
  • 2
  • 9
  • 25
0
votes
0 answers

Docker Toolbox MongoDB C# TimeoutException

I am new to docker and mongoDB, am using docker toolbox on widows 10 home machine.while I tried to follow a tutorial on medium on docker, .net core and mongodb am getting the following timeout error A timeout occured after 30000ms selecting a…
leox
  • 1,315
  • 17
  • 26
0
votes
1 answer

Docker toolbox with mysql container problem on Windows 10 Home (and Pro)

I unable to run MySQL containers made from MySQL images with database volumes mapped to my host machine's folder. It doesn't matter if the host folder is empty or with existing database files. I do know that Docker Toolbox could mount volumes on…
loljoe
  • 1
  • 2
0
votes
1 answer

Mounting drives outside the uses folder with Docker Toolbox for Windows

I may be failing to search SO, but I can't seem to find an answer for this in the last two years, and the ones I've found don't seem to work (unless I'm implementing them wrong). I'm running Docker Toolbox on Windows 10 Home, and I'm trying to mount…
Rohit
  • 3,018
  • 2
  • 29
  • 58
0
votes
1 answer

How to hide INFO and WARN?

I'm using Docker Toolbox to use Spark on Windows 10. The docker image is sequenceiq/spark. https://hub.docker.com/r/sequenceiq/spark/ However, a lot of "logs" are displayed. scala> dataRDD.collect() 18/12/07 03:59:48 INFO mapred.FileInputFormat:…
Royce
  • 1,557
  • 5
  • 19
  • 44
0
votes
1 answer

Invoke docker from python

I am very new to docker so I am highly confused. a= 'o1 & o2 | -o3' p=subprocess.Popen("docker run -ti ajaveeda/satisker:first /data/satisolve '{} ".format(a + " ' "),shell=True, stdout=subprocess.PIPE, stderr=sys.stderr) output, err =…