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

Configure portainer with Minikube's docker

Is there a way to configure Portainer's dashboard to show Minikube's docker? Portainer Installed in the local docker (toolbox), on VM under windows 7; the dashboard connection to the local (inside) docker is working fine. docker run -d -p 9000:9000…
Yuval Simhon
  • 1,439
  • 2
  • 19
  • 34
3
votes
1 answer

docker daemon exec: "dockerd" : executable not found in %PATH%

I'm trying to run this command : docker daemon --insecure-registry 192.168.99.100:5000 but i'm gettin ghe following error: exec: "dockerd": executable file not found in %PATH% I'm using win7 and docker-toolbox 1.12.2 with VM Virtual Box. What is…
Yuval Simhon
  • 1,439
  • 2
  • 19
  • 34
3
votes
2 answers

How to run Google Datalab locally?

How do I run Datalab locally when it requires Docker (and Docker Toolbox is not supported as documented here: https://cloud.google.com/datalab/docs/quickstarts/quickstart-local)? The Docker website says Docker requires Windows 10 Professional or…
3
votes
0 answers

docker of solr and nutch working together?

I'm trying to activate nutch and solr as dockers out of the box to consume that in REST. Tried same docker - started it with docker run --name nutch_solr -d -p 8899:8899 -p 8983:8983 -t momer/docker-solr-nutch:4.6.1 can't surf to ..:8983, or…
user1025852
  • 2,684
  • 11
  • 36
  • 58
3
votes
2 answers

How to I make docker start as a service on OS X?

I installed DockerToolbox 1.11.1 on my Mac OS 10.11 and it does start docker via Kinematic and if I click Docker CLI it wills start a terminal where docker is properly running (docker version returns info and success). Still, If I try to do the same…
sorin
  • 161,544
  • 178
  • 535
  • 806
3
votes
1 answer

NodeJS / Express cannot connect to mongodb running in docker

I'm having a problem connecting from a nodejs/express app to a mongodb instance running in a docker container. The nodejs app is running on my local host, Mac OS X. I am using the Docker Toolbox to run docker on my Mac, not boot2docker. I have…
Mike
  • 150
  • 1
  • 8
3
votes
1 answer

Setting DOCKER_HOST after Docker Toolbox/Mac install

Mac here. I installed Docker via the Toolbox and all Docker commands yield the same error: myuser@mymachine:~/tmp$docker info Get http:///var/run/docker.sock/v1.20/info: dial unix /var/run/docker.sock: no such file or directory. * Are you trying to…
smeeb
  • 27,777
  • 57
  • 250
  • 447
3
votes
3 answers

Install docker-machine on OSX WITHOUT Docker Toolbox

Am I correct to assume that installing Docker Toolbox is now the required method for installing docker-machine on OSX? I have a script that I've been using for onboarding my team of developers, which installs docker related tools like…
Colyn Brown
  • 508
  • 1
  • 5
  • 11
3
votes
4 answers

Unable to create docker virtual machine

I was using boot2docker previously and everything was working fine. Now when I upgraded to using Docker Toolbox, I am unable to create a new virtual machine. I am even unable to import the virtual machine that was used with boot2docker. I get this…
Kingamere
  • 9,496
  • 23
  • 71
  • 110
2
votes
1 answer

how to connect python to cassandra that run with docker

I want get online data and save to cassandra keyspace. I read this guide, https://phoenixnap.com/kb/install-cassandra-on-windows, to run cassandra. It seems easy, but I get error that related to jdk. So, I tried different way. I tried with…
Ali Hosein pour
  • 220
  • 4
  • 19
2
votes
0 answers

Postgres pgadmin4 error: Unable to connect to server: timeout expired on docker

I'm running a dockerised django app with db settings: docker compose file I want to connect the db to pgadmin4, for that created a pgadmin4 container using docker run -p 5555:80 --name pgadmin -e PGADMIN_DEFAULT_EMAIL='postgresdb'…
Akshay Chandran
  • 985
  • 11
  • 16
2
votes
1 answer

Docker isn't mounting the directory? "OCI runtime create failed: container_linux.go:346: no such file or directory: unknown"

On my Windows 10 Home computer with Docker Toolbox, Docker is having trouble mounting the drives. I've already run dos2unix on the entrypoint.sh file. The full error is as such: ERROR: for users Cannot start service users: OCI runtime create…
2
votes
2 answers

How to have the pod created run an application (command and args) and at the same time have a deployment and service referring to it?

Context: Tech: Java, Docker Toolbox, Minikube. I have a java web application (already packaged as web-tool.jar) that I want to run while having all the benefits of kubernetes. In order to instruct kubernetes to take the image locally I use an image…
despot
  • 7,167
  • 9
  • 44
  • 63
2
votes
0 answers

Unable to download or very slow download of boot2docker.iso (v19.03.5) from github repo

Docker newbie here. I just installed Docker Toolbox on my Win10 (Home) machine. After installation, I'm supposed to run a "Docker Quickstart Terminal". It opens up a terminal that tries to download a "boot2docker.iso" file but it is not able to do…
rodiwa
  • 1,690
  • 2
  • 17
  • 35
2
votes
0 answers

ERROR: Couldn’t connect to Docker daemon - you might need to run `docker-machine start default

I have a Virtualbox 6.1.4 with Toolbox 19.03.1 installed on Windows 10 with an user with administrator access. I created a machine called xpto, then I run the eval $(docker-machine env xpto) to turn it active. I have a docker compose file with two…
Luciano Borges
  • 817
  • 3
  • 12
  • 31