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
3 answers

Unauthorized error when build docker image with jib, using a custom base image

I've to create a docker image, starting from a distroless base image, with some custom files. I use JIB with maven on my spring boot project. I'm working on Windows 7 with Docker toolbox. this is the step than I do for now: 1) create Dockerfile with…
0
votes
0 answers

Minikube local cluster is not starting

I have windows 10 Home single Language. I have install kubectl and minikube. Also I am using Docker Toolbox on Windows. while executing minikube start --kubernetes-version=1.17.0 command I am getting bellow error: * minikube v1.8.2 on Microsoft…
Neha Bhoi
  • 141
  • 1
  • 1
  • 9
0
votes
1 answer

How to access Docker Toolbox containers from locahost?

I'm currently using docker toolbox for windows and am having trouble accessing the container instances from localhost. Picture of the Port details All the ports are up and running, but I can't seem to access them from localhost through my browser.…
hyz
  • 1
0
votes
0 answers

Works on mac, but on windows get ECONNREFUSED, docker-toolbox

This is my docker-compose file that runs when I do docker-compose up -d on mac. I am now trying this on windows, with docker-toolbox (as docker desktop isn't supported on my windows). I run my application on http://localhost:1337 and then the…
Noitidart
  • 35,443
  • 37
  • 154
  • 323
0
votes
1 answer

Docker Compose with Docker Toolbox: Node, Mongo, React. React app not showing in the said adress

I am trying to run Express server and React app trough docker containers. The Express server runs correctly at the given address (the one on Kitematic GUI). However I am unable to open the React application trough the given address, giving me site…
ImInYourCode
  • 567
  • 1
  • 7
  • 19
0
votes
0 answers

Why two containers on the same docker machine can't communicate through localhost?

Getting started with Docker I do not understand why two containers on the same docker machine can't communicate through localhost. I read about this SO post already : how-to-connect-two-docker-containers-through-localhost but could not get a clear…
Logan Wlv
  • 3,274
  • 5
  • 32
  • 54
0
votes
1 answer

How to change DNS with Docker Toolbox for Windows 10 Home version

I have an issue with Docker Toolbox : $ docker build -t myproject/myproject-docker . Sending build context to Docker daemon 371.8MB Step 1/4 : FROM openjdk:8-jdk-alpine Get https://registry-1.docker.io/v2/: dial tcp: lookup registry-1.docker.io on…
mtnp
  • 314
  • 7
  • 24
0
votes
1 answer

How to solve error with pre-create check when runnig docker quickstrat terminal?

I am trying to install on my "WIN10 Home" the Docker Toolbox. When executing the docker quickstart terminal, I am getting this error: Running pre-create checks... Error with pre-create check: "VirtualBox is configured with multiple host-only…
0
votes
1 answer

Docker Toolbox Wildfly IP Address HTTP 404 Response

I have recently installed docker toolbox for windows 10 home. I downloaded the jboss/wildfly image from the docker hub. I tried to create the container with the following command.: docker run -p 8080:8080 -p 9990:9990 -it jboss/wildfly…
lowie68
  • 41
  • 5
0
votes
2 answers

Docker toolbox volume mounting not working on windows 10

I am new to docker Here is my configuration Folder Structure Test : - docker-compose.yml - Dockerfile - www - index.html Docker YML version: "3" services: www: build: . ports: - "8001:80" …
Midhun
  • 1,107
  • 10
  • 24
0
votes
1 answer

Unable to use Shared folder from Windows 10 to boot2docker VM after boot2docker v18.06

I used boot2docker-v18.06.0 and I could use the shared folder in boot2docker shell which I could access windows'users folder in boot2docker. However, for boot2docker version after 18.06.xx they do not support AUFS, I could not access windows'users…
Chun To Lam
  • 129
  • 1
  • 1
  • 4
0
votes
0 answers

How to add CORS in nginx for ddev

I want to add CORS headers to my nginx responses in ddev. I have added a "cors.conf" in ".ddev/nginx", which is definitely included, since the web container crashes when the configuration file is broken. I have tried different versions, with…
0
votes
0 answers

docker node image not running on localhost not even on docker machine ip

I tried docker run -p 8080:8080 myhub/node_project server is running but i can't access it through browser not even with docker-machine ip FROM node:alpine COPY ./ ./ RUN npm install ENV SERVER_PORT 8080 EXPOSE 8080 CMD ["npm","start"]``` No…
0
votes
0 answers

Migrate containers from Docker Toolbox to Docker for Windows

I am looking for a way to migrate docker containers From : a Windows 7 system with Docker Toolbox (= using Virtualbox) To : a Windows 10 system with Docker for Windows (= using Hyper V) Some of my containers have DBs with data, and obviously I'd…
Clemorphy
  • 464
  • 1
  • 4
  • 17
0
votes
1 answer

Elasticsearch docker container hanging on startup without error

I'm setting up an Elasticsearch instance in Docker on Windows 10 Home (therefore I'm using Docker Toolbox as I don't have Hyper-V). At this point all I'm looking for is a running Elasticsearch instance which is curl-able. I've been following the…
matgr
  • 117
  • 1
  • 11