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

Windows 7 docker toolbox - dockerizing jenkins - failing to install plugins

software: windows 7 docker toolbox / virtualbox cmder Create docker-machine $ docker-machine create -d virtualbox default Configure this - cmder - to enable access to docker commands $ @FOR /f "tokens=*" %i IN ('docker-machine env --shell cmd…
Steve Tomlin
  • 3,391
  • 3
  • 31
  • 63
0
votes
1 answer

Can't pull some images in Docker

When I'm trying to pull images I get in stuck. docker pull php:7-fpm 7-fpm: Pulling from library/php f17d81b4b692: Already exists 376d99d019dc: Already exists 80b3573727f0: Already exists 2c492579cd1f: Waiting I'm using Windows 10 Home with…
Victor Fedorenko
  • 331
  • 2
  • 13
0
votes
0 answers

Docker for Windows 7 with Visual Studio 2017 Integration

My objective is to have a development environment with docker and Kubernetes integrated with Visual Studio 2017 so that I can run the app on the docker container from directly within Visual Studio. I'm on a Windows 7 OS. My research has taken me…
jth_92
  • 1,120
  • 9
  • 23
0
votes
0 answers

Can not connect to Docker daemon from eclipse windows

I can not connect to Docker daemon from Eclipse in Windows OS. I installed docker tooling plugin in my Eclipse Here are my configurations This is the error I am getting Please help me to fix this.
Pradeep Charan
  • 653
  • 2
  • 7
  • 28
0
votes
1 answer

Docker failfure in Hyperledger Tutorials

I played Hyperledger in these days, followed the hyperledger docs, when I ran the script in the network tutorial and got the following errors, the source codes of this tutorials is here: $ ./byfn.sh -m up -l node Starting for channel 'mychannel'…
Hantsy
  • 8,006
  • 7
  • 64
  • 109
0
votes
1 answer

Docker Toolbox Error: Looks like something went wrong in step 'Setting env'

I had Docker Toolbox installed on my Windows 7 PC and I wanted to upgrade my Docker installation to the most recent version. To do that, I decided to delete Docker Toolbox from my system and reinstall it. I uninstalled Docker Toolbox, uninstalled…
Mihir Patel
  • 250
  • 3
  • 7
0
votes
0 answers

Forwarding postgres port into docker-toolbox's container

I would like to use metabase in a Windows 10 (not Pro) docker container accessing my data that comes SSH port forwarded from a remote PostgreSQL instance. I've set up Putty to port forward from the remote host port 5432 to local 127.0.0.1:5432. I…
Akasha
  • 2,162
  • 1
  • 29
  • 47
0
votes
1 answer

My kafka topics are not available after kafka restart

i have a single machine with Windows 10. I installed Docker toolbox, and started my Kafka container using the below command. docker run -it -p 2181:2181 -p 3030:3030 -p 8081:8081 -p 8082:8082 -p 8083:8083 -p 9092:9092 -e…
ZEE
  • 381
  • 1
  • 6
  • 20
0
votes
0 answers

Relative path in volume mapping of Docker compose does not work under Windows

I am using Docker Toolbox 1803 under Windows 10 64bit. I am trying to run docker zipkin in my local system, and got failure when ran the following command in Toolbox GuickStart Terminal. docker-compose -f docker-compose.yml -f…
Hantsy
  • 8,006
  • 7
  • 64
  • 109
0
votes
1 answer

adminer container keep recreating itself and auto start

I have a container from (https://hub.docker.com/r/library/mysql/) in (docker toolbox) started with with this yml using command , will k "docker-compose -f stack.yml up" # Use root/example as user/password credentials version: '3.1' services: …
hkguile
  • 4,235
  • 17
  • 68
  • 139
0
votes
1 answer

server connection difficulty with flask.py file running inside a docker container

I have a tensorflow serving with flask app running inside a docker container. I gave in flask_client.py file to access from outside the container. if __name__ == "__main__": app.run(host= '0.0.0.0') When i run this flask_client.py file, python…
dhinar1991
  • 831
  • 5
  • 21
  • 40
0
votes
2 answers

Blockchain fabric samples: Latest chaincode not getting picked by by ./startFabric.sh

I am running Docker Toolbox on Windows. I have downloaded fabric samples from https://github.com/hyperledger/fabric-samples. Modified the fabcar chaincode. The first time I ran ./startFabric.sh to bring up the local blokchain network, the chaincode…
0
votes
1 answer

Access a docker container running on a VM machine from LAN connected PC

I want to run a Google Earth Engine Datalab on a server and access it from another PC on LAN. Server's OS is Windows Server 2012. So, following https://developers.google.com/earth-engine/python_install-datalab-local, I did: Install Docker…
0
votes
1 answer

How to access host OS files from docker container via virtualbox on Windows 10 home

I installed the Docker Toolbox on my Windows 10 home machine. When I hit the quickstart icon, I get a bash shell, and I can run a command like > docker run -it ruby /bin/bash That puts me into the bash shell of the docker Ruby container. That…
Jay Godse
  • 15,163
  • 16
  • 84
  • 131
0
votes
1 answer

Mount container volume on (windows) host without copying

I have a container that I start like docker run -it --mount type=bind,source=/path/to/my/data,target=/staging -v myvol:/myvol buildandoid bash -l It has two mounts, one bind mount that I use to get data into the container, and one named volume that…
jdm
  • 9,470
  • 12
  • 58
  • 110