Relative Content

Tag Archive for docker

Docker push starts but stuck on Pushing

When i try to push my image to the docker hub, it initiates but as soon as it goes from Waiting -> Pushing, its just stuck there, nothing happends. The same happends to any layer it tries to Push.

How to remove all docker containers at once in windows [duplicate]

This question already has answers here: How to remove old Docker containers (67 answers) Closed 4 days ago. WC:UsersshbindalDocumentsawsDevopsEx_Files_Learning_DockerNew folder>docker ps -aq | xargs docker stop | xargs docker rm ‘xargs’ is not recognized as an internal or external command, operable program or batch file. C:UsersshbindalDocumentsawsDevopsEx_Files_Learning_DockerNew folder>docker ps -q | % { docker rm $_ […]

How can I start the Docker container without the other services starting automatically?

Problem I wanted to experiment with some postgres 15 localization changes. So i changed the postgresql.conf like lc_time from US to German in my docker container.(These changes work on my other VM cluster). Afterwards i wanted i restarted the postgres15 container. Unfortunately, the container gets stuck on “restart”. Looking into the container logs: 2024-10-24 15:02:36.590 […]

How can I start the Docker container without the other services starting automatically?

Problem I wanted to experiment with some postgres 15 localization changes. So i changed the postgresql.conf like lc_time from US to German in my docker container.(These changes work on my other VM cluster). Afterwards i wanted i restarted the postgres15 container. Unfortunately, the container gets stuck on “restart”. Looking into the container logs: 2024-10-24 15:02:36.590 […]

Docker image is not running in docker desktop

Context: The use case is creating an docker image of a asp.net mvc application and run it within Dcoker Desktop as local container. The Visual Studio Code is the IDE. The app is published by folloiwng command

Docker image is not running in docker desktop

Context: The use case is creating an docker image of a asp.net mvc application and run it within Dcoker Desktop as local container. The Visual Studio Code is the IDE. The app is published by folloiwng command

Returned server for api route and version on docker?

I’m unsure why my docker-compose file is throwing this error, i’ve got four services being spun up the control centre, schema-registery, zookeeper and a broker. The only one that threw up an error was the zookeeper.

Remove Items In Build history of Docker Desktop Using Command

In Windows Subsystem for Linux, I start up services using docker compose up -d. I can remove Docker containers using docker stop $(docker ps -q) and docker rm $(docker ps -a -q), images using docker rmi $(docker images -q), and volumes using docker volume rm $(docker volume ls -q). I have tried removing items in the Build history of Docker Desktop using docker builder prune --all --force and docker buildx prune --all --force.