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
361
votes
39 answers

Docker - unable to prepare context: unable to evaluate symlinks in Dockerfile path: GetFileAttributesEx

I just downloaded Docker Toolbox for Windows 10 64-bit today. I'm going through the tutorial. I'm receiving the following error when trying to build an image using a Dockerfile. Steps: Launched Docker Quickstart terminal. testdocker after…
villanux
  • 3,631
  • 2
  • 12
  • 5
205
votes
20 answers

Network timed out while trying to connect to https://index.docker.io

I installed Docker-Toolbox just now while following their webpage I started with Docker QuickStart Terminal and see following ## . ## ## ## == ## ## ## ## ## === …
daydreamer
  • 87,243
  • 191
  • 450
  • 722
153
votes
18 answers

Docker repository server gave HTTP response to HTTPS client

I use Docker toolbox for windows and I`m trying run private docker registry refering this documentation https://docs.docker.com/registry/deploying/ But it`s not working for me. Error after this: $ docker pull 192.168.99.100:5000/my-ubuntu Error $…
Tomáš Kacálek
  • 1,687
  • 2
  • 10
  • 13
127
votes
10 answers

How to uninstall Docker completely from a Mac?

I would like to remove the Docker toolbox completely from my Mac. I tried to remove Docker from the /Applications folder, but it didn't work out.
Amol Pol
  • 1,422
  • 2
  • 11
  • 13
111
votes
7 answers

Docker Toolbox - Localhost not working

So I'm using Docker Toolbox because I don't have Hyper-V on my machine since it's not Windows 10 pro. Everything seems to work fine, but when I try to go on my browser 0.0.0.0:80 it always returns me: This site can’t be reached But when I run the…
Mark
  • 1,603
  • 3
  • 13
  • 18
87
votes
8 answers

docker ps shows empty list

I built a docker image from a docker file. Build said it succeeded. But when I try to show docker containers through docker ps (also tried docker ps -a), it shows an empty list. What is weird is that I'm still able to somehow push my docker image to…
Ville Miekk-oja
  • 18,749
  • 32
  • 70
  • 106
78
votes
13 answers

Change Docker machine location - Windows

I am using docker toolbox on Windows 7 to run docker. (docker version 1.9.1) As it turns out, the docker machine creates its VM at C:\Users\username\.docker\machine\machines\default. As I commit the images, the size of VM at this location bloats up.…
shrivb
  • 1,511
  • 3
  • 15
  • 20
61
votes
3 answers

Install Docker Toolbox on a Mac via command line

I am trying to automate setting up a developer environment on Mac. Part of that setup is installing the Docker Toolbox. I cannot find any documentation on how do to this via command line. How can I automate this installation (must be triggered via…
Rylander
  • 19,449
  • 25
  • 93
  • 144
60
votes
10 answers

Volume binding using docker compose on Windows

I recently upgraded my Docker Toolbox on Windows 10, and now my volume mounts no longer work. I've tried everything. Here is the current mount path: volumes: - C:\Users\Joey\Desktop\backend:/var/www/html I receive an invalid bind mount error.
9997
  • 1,187
  • 1
  • 9
  • 14
41
votes
6 answers

The command could not be located because '/snap/bin' is not included in the PATH environment variable

when i try to run git-all-secrets i got Dockerfile: command not found and this is the command include correct information here is an example of the issue root@momo22:/home/momo/git-all-secrets# docker run -it abhartiya/tools_gitallsecrets…
ELMO
  • 581
  • 2
  • 5
  • 7
40
votes
9 answers

How to use --volume option with Docker Toolbox on Windows?

How can I share a folder between my Windows files and a docker container, by mounting a volume with simple --volume command using Docker Toolbox on? I'm using "Docker Quickstart Terminal" and when I try this: winpty docker run -it --rm --volume…
Anthony O.
  • 22,041
  • 18
  • 107
  • 163
36
votes
2 answers

Verify the version of ubuntu running in a Docker container

I have Docker Toolbox installed on windows 8.1 and I am creating an image based on ubuntu:latest (which should be 16.04). I want to make sure that my application is indeed run on 16.04. Here is my Dockerfile: FROM ubuntu:latest MAINTAINER xyz…
Cola
  • 2,097
  • 4
  • 24
  • 30
36
votes
3 answers

Docker daemon config file on boot2docker / docker-machine / Docker Toolbox

Where can I find docker daemon config file on boot2docker machine? According to this topic: Dockerfile: Docker build can't download packages: centos->yum, debian/ubuntu->apt-get behind intranet I want to set '--dns' in DOCKER_OPTS, but I can't…
anaid
  • 921
  • 3
  • 11
  • 13
34
votes
8 answers

Docker Toolbox: Error response from daemon: invalid mode: /root/docker

I am a Docker newbie and currently replicating course videos. I have to add that I only have Windows 10 Home and I am hence limited to Docker Toolbox. (At work I have W 10 Pro and use Docker itself and didnt experience the problem I am about to…
Markus Knopfler
  • 617
  • 2
  • 7
  • 14
32
votes
4 answers

Docker push to AWS ECR private repo failing with malformed JSON

I am trying out AWS ECR and pushing a new tag to our private repossitory. it goes like this: export DOCKER_REGISTRY=0123123123123.dkr.ecr.us-east-1.amazonaws.com export TAG=0.1 docker build -t vendor/app-name . `aws ecr get-login --region…
vvondra
  • 3,022
  • 1
  • 21
  • 34
1
2 3
19 20