docker-for-windows Questions

5

Solved

I'm using docker for windows (Version 18.03.0-ce-win59 (16762)) in a windows 10 pro. All the containers run ok after running the command docker-compose -up -d. The problem is when I restart the doc...
Flanagan asked 9/7, 2018 at 9:37

3

Solved

In the past I could simply do something like this: Dockerfile: FROM ubuntu RUN echo "test" which would output test to my shell. I used this as a way of debugging my builds. In the latest...
Loireatlantique asked 5/1, 2021 at 13:43

2

Solved

I'm trying to connect to my SQL Server instance running in my local computer using host.docker.internal (as recommended in https://docs.docker.com/docker-for-windows/networking/#use-cases-and-worka...
Uigur asked 4/5, 2018 at 3:49

3

Since version 2.3.0.2 docker desktop is able to be installed on Windows 10 Home edition, because it can use windows feature WSL2 instead of Hyper-V. Windows 10 Home edition does not come with Hyper...
Glaydsglaze asked 12/9, 2020 at 22:28

7

I am attempting to push an image of a windows container to a "local" repository on a Windows VM, which has it's own IP address. So when I create the registry on my VM, I can view the repository li...
Aimless asked 17/6, 2019 at 17:26

11

I try to push an image in my public docker repository, but after some minutes I have this problem: and during pushing, the following occurs many times (when retrying): My version of docker is the...

7

Solved

I am trying to get an integration test working. In the test initialization phase I attempt to spin up a Redis server from a docker image. var p = new Process { StartInfo = new ProcessStartInfo("do...

3

Solved

I have docker-compose.yml like this: version: '3' services: mysql: image: mysql volumes: - data:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=$ROOT_PASSWORD volumes: data: And my mou...
Recalesce asked 4/6, 2017 at 20:9

6

Solved

I am using VS2017 docker support. VS created DockerFile for me and when I build docker-compose file, it creates the container and runs the app on 172.x.x.x IP address. But I want to run my applicat...

5

Solved

I have installed the Edge version of Docker for Windows 18.05.0-ce (Windows 10 Hyper-V) and enabled Kubernetes afterwards. On my other machine a kubectl context was created automatically, but on th...
Jodoin asked 10/7, 2018 at 13:8

7

I am trying to build an image using docker windows container. Here is my dockerfile FROM mcr.microsoft.com/windows/servercore:ltsc2019 as installer RUN Invoke-WebRequest -URI 'www.google.com' Wh...
Goldie asked 16/1, 2020 at 9:4

3

I'm using OpenStreetMap tile server @ the https://github.com/Overv/openstreetmap-tile-server to host my own tile server. I run the container with the following command and it runs without error, h...
Bipartite asked 27/4, 2020 at 20:49

24

Solved

I have problem regarding pulling docker-dev in a docker image for making my development environment. When I tried to pull docker-dev, I got an error like "docker manifest not found." Can ...
Zebrawood asked 23/6, 2021 at 8:44

2

Solved

On Docker for Windows and working with windows containers, I cannot get my persistent volume to work on the main database directory of the windows container. This would be C:\Program Files\Microsof...
Refection asked 28/8, 2019 at 8:36

3

Solved

I'm curious if a console app written in .NET Core running on Windows can intercept a SIGKILL event and basically know it's being terminated. Here's the code I'm trying: class Program { static asy...
Orator asked 4/3, 2020 at 1:7

4

Solved

I'm attempting to learn about docker and how to containerize a .NET core Web app. I've been following the tutorial below and have made good progress except when I actually run my project. https://...
Zucchetto asked 10/2, 2020 at 21:24

13

Solved

I am facing an issue with Docker for Windows application. This is happening after updating to newer version of 4.3.2. Previous version was running without any issues. After downloading and updating...
Blaney asked 8/1, 2022 at 17:17

3

Solved

I recently updated my Docker environment to run on WSL 2 on Windows. For setting memory allocation limits on containers in previous versions, I had option in Docker Desktop GUI under Settings->...

9

Solved

We have Docker for Windows installed on a Windows Server 2016 Datacenter box. We use this box as a build agent for our docker containers. When we try to connect to this box via the daemon t...
Charlatanism asked 9/7, 2018 at 18:46

10

Solved

I am trying to install the Docker community edition for windows, the installation was successful and it asked me to logout and login again and I did same. But when I tried to start the docker it sa...
Fraase asked 6/7, 2017 at 6:22

25

Why is Docker trying to create the folder that I'm mounting? If I cd to C:\Users\szx\Projects docker run --rm -it -v "${PWD}:/src" ubuntu /bin/bash This command exits with the following error: ...
Lavine asked 12/6, 2018 at 13:5

5

Solved

I want to locate a container's log location. I use Docker Desktop for Windows I know that on linux they are at /var/lib/docker/containers/ But where is it. Is it hidden away somewhere in an ina...
Anapest asked 19/12, 2016 at 9:16

10

I've updated Windows 10 to 2004 latest version, installed wsl2 and updated it, installed docker, and ubuntu. When I create a simple index.php file with "Hello World" it's working perfectl...

23

I'm using the Windows 10 Home operating system. I have installed Docker toolbox. I have created a docker image of my .net core application by using following command. $ docker build -t helloWorld:c...
Cauvery asked 15/2, 2017 at 13:4

3

Solved

My intention is to use Windows Docker to deploy an InfluxDB 2.0.8 database and link to it via a self-hosted Grafana instance on the same docker network. To do so, I've done the below steps: Start ...
Coniology asked 27/9, 2021 at 19:27

© 2022 - 2025 — McMap. All rights reserved.