Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
43 views

Update 2025. All the older posts are currently not working with the newer version of Docker. I am in Windows 11 Pro (not using WSL2). Docker Version Client: Version: 28.2.2 API version: ...
Maverick's user avatar
  • 1,225
0 votes
1 answer
130 views

Which docker CLI commands will use the proxy configuration in the ~/.docker/daemon.json? { "proxies": { "default": { "allProxy": "http://DAEMON.com:3128&...
mon's user avatar
  • 23k
0 votes
1 answer
145 views

After some change made to docker build scripts used in Jenkins pipelines and/or a Docker upgrade I've started experiencing serious image data leaks. They manifest themselves in an unstable, constantly ...
mirekphd's user avatar
  • 7,231
0 votes
1 answer
94 views

When I run a docker CLI command and send a SIGTERM signal to the process running the docker command, I would expect the process to exit with status 143 representing the SIGTERM but it actually exits ...
Zarif Mahfuz's user avatar
0 votes
0 answers
507 views

I've tried to push the docker images to the remote repository. But every operation gets failed. Either I get EOF exception like below My-MacBook-Pro-2 producer % docker push <awsAccountId>.dkr....
sss's user avatar
  • 1
1 vote
1 answer
122 views

I am trying to upgrade docker-engine to 23.0.0 as a part of buildroot installation. I have upgraded all the prerequisite packages i.e golang, containerd, docker-cli, runc, etc to the required higher ...
Jay's user avatar
  • 59
1 vote
2 answers
2k views

I'm using an image that sometimes has a rolling version change (namespace/repo:...-1 -> -2) and they also delete the old version. I am trying to pull their image but a regex doesn't work. I tried ...
EliasV's user avatar
  • 30
0 votes
2 answers
548 views

On running docker-compose up -d --build I am getting the following error: PS C:\Users\KELLYRYAN\Documents\august-code\drf_course\drf_course> docker-compose up -d --build [+] Building 128.5s (11/18) ...
Kamaur's user avatar
  • 21
2 votes
1 answer
353 views

I am trying to exec (interact with) a docker container, with Go. This is the code I am using: func (docker *Docker) redirectResponseToOutputStream(outputStream, errorStream io.Writer, resp io.Reader) ...
Máté Németh's user avatar
1 vote
1 answer
466 views

I can see docker disk using the docker system df command: $ docker system df TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 31 1 12.86GB 12.81GB (99%) ...
Johnny Metz's user avatar
  • 5,847
0 votes
0 answers
373 views

I am new to docker world. I have installed docker desktop for windows on my win11 machine. When I run docker version. I get this below information. Can someone please guide me on how I can get docker ...
Rashmita Purkayastha's user avatar
3 votes
0 answers
356 views

I am using Docker CLI. I want to print the current Docker endpoint according to the current Docker context. Here is the output structure: $ docker context ls --format '{{ json . }}' | jq { "...
Réda Housni Alaoui's user avatar
5 votes
1 answer
1k views

I am using minkube as docker engine. So I can get the many container instances related minikube containers with 'docker ps' command. I want to see the containers without them. minikube containers's ...
rura6502's user avatar
  • 385
0 votes
0 answers
60 views

I am building docker images in another docker container (dind container). I see that the newly built docker image does not have the "DockerVersion" attached. I want to ensure that this ...
moz8's user avatar
  • 331
4 votes
1 answer
3k views

I'm trying to get the docker cli working on Windows. I've followed the steps from https://lippertmarkus.com/2021/09/04/containers-without-docker-desktop/, but when I execute docker run hello-world I ...
andomeda's user avatar
  • 163
0 votes
1 answer
621 views

I am using the -H option to specify a remove host when running a docker command. However, I am trying to specify a private key file but am unable to figure out if that's possible. If I rename my ...
gfree's user avatar
  • 519
0 votes
2 answers
3k views

I started a container using the below command connecting to linux server using putty. docker start -i <containerid> but I am not able exit from it and get back to command line, without closing ...
kaarthik selvaraj's user avatar
5 votes
0 answers
496 views

I am new to Docker, but I am confused about how the docker images ls -a behaves differently in Docker desktop. Unlike when running in linux it does not show intermediate/dangling images, but it only ...
Manuel Pagliai's user avatar
6 votes
2 answers
10k views

I have Docker Desktop for Windows and Git (including Git Bash) installed on my computer. The docker command works in the Command Prompt and in Powershell, but not in Git Bash. When I run the docker ...
Florian's user avatar
  • 679
2 votes
0 answers
657 views

I am trying to mount the volume on my customized image. docker run --rm -v models:/volumes/models <image-name>:latest or docker run --rm <image-name>:latest Its throwing same error for ...
Sridevi Raman's user avatar
-1 votes
3 answers
2k views

I was trying various options of "docker image history" command to see the image layers used to build the image on my local machine. There is a nginx image on my system which has no tags ...
Gunjan Shah's user avatar
  • 5,178
1 vote
1 answer
3k views

I have a very simple "hello world" kind Asp.net Core API Application (swagger included) where I click one API Controller and it fetches the data from the database and returns as JSON. I have ...
Brijesh Shah's user avatar
0 votes
1 answer
205 views

I'm trying to bind a host directory to a mssql docker container and have the following [bash] script: #!/bin/sh IMPORTDIR=$(cd $(dirname $0); pwd) DATADIR=${DATADIR:-/tmp/db/} set -xe docker run --...
Dark Star1's user avatar
  • 7,453
0 votes
1 answer
405 views

So, I want to create an image for my app using docker build . But I forgot to give it a name and the name became <none>. When I tried to remove this with docker image rm <none> The output ...
BookShell527's user avatar
4 votes
1 answer
12k views

Remote docker servers can be reached by the docker cli by settings the DOCKER_HOST environment variable. Mostly, tcp://<hostname-or-ip>:<port> or sometimes ssh://<hostname-or-ip>:<...
peterh's user avatar
  • 1