117 questions
Tooling
0
votes
1
replies
47
views
Is it possible to migrate a container from one server to another server?
Server 1
Server 2
On server 1 I have a container running abc and I would like to copy the container to Server 2. Is it possible?
1. Is it possible to do it using docker checkpoint?
2. Is it possible ...
0
votes
0
answers
78
views
Docker Desktop Application Showing "Docker Engine Stopped" on Windows Server 2022
I have installed Docker Desktop on Windows Server 2022 and enabled WSL2 also but when I open Docker Desktop App then it showing 'Docker Engine Stopped' and when I Restart Docker Service then Still it ...
0
votes
0
answers
43
views
Docker Desktop reverted to old containers after update
I am running Docker Desktop on Windows. I have a single container which runs DynamoDB locally. Having lost and recreated my container after a previous update, I have now "lost" the container ...
0
votes
1
answer
224
views
Docker engine does not start | docker desktop does not installed properly in windows [closed]
steps followed to install docker desktop in windows.
https://docs.docker.com/desktop/setup/install/windows-install/
downloaded : Docker Desktop for Windows - x86_64 .
For installation, I tried,
keep ...
0
votes
2
answers
3k
views
docker desktop encountered an unexpected error and needs to close
Docker desktop was working until I updated it (saw an update button in the app and updated it). After updating, a restart of the app happened and docker is refusing to connect again.
I uninstalled the ...
0
votes
1
answer
124
views
Unable to find windows container in my Docker desktop
I have tried all the possibilities to get the windows container on my Docker desktop.but i failed to get that.
Can any one please help me on this or provide me the steps.
I used -Swithdeamon command ...
0
votes
2
answers
2k
views
Docker service startup failed with status 203
I have a RHEL 7 server with Docker EE and I have installed Docker CE after removing Docker EE. But after installing Docker CE, when I try to start Docker service with command systemctl enable --now ...
0
votes
1
answer
2k
views
Can't start complete colima & docker engine as x86_64 on arm64
I've spent quite some time in the last month trying to figure out how to run colima & docker engine on my Mac Pro M2 Max as x86_64 for both.
Everything came from the missing compatible ...
0
votes
1
answer
112
views
Not able to access docker command with non-sudo user?
Why I am getting this error when executing docker version with non-sudo user.
I have installed docker using Script
Output with non-sudo user
docker version
Client: Docker Engine - Community
Version: ...
1
vote
0
answers
839
views
Cant access portainer from web browser. (ERR_EMPTY_RESPONSE)
My OS is almalinux 9.2. Accessing https://server_ip:9443 (portainer) from browser gives error:
This page isn’t working
<server_ip> didn’t send any data.
ERR_EMPTY_RESPONSE
I installed docker ...
0
votes
2
answers
961
views
Docker engine failing to start after changing docker root directory
I just created a new partition on my Linux CentOs 7, and after that I changed my Docker Root Directory from /var/lib/docker to /data/docker.
In the 'docker.service' file I added the following config:
...
1
vote
0
answers
448
views
how to know the configured container-runtime of used docker client
I would like to know how to findout the configured container-runtime of your docker-client.
Preferably in a programmatic way with golang.
I know those to packages for golang handling containers with ...
2
votes
2
answers
2k
views
Command `eval $(minikube docker-env)` vs `Using eval $(minikube -p minikube docker-env)`
I've set up the Docker Engine locally to run on minikube (rather than using Docker Desktop). I know that I need to make sure that the Engine "talks to" the minikube cluster. I've consulted ...
2
votes
1
answer
639
views
How to run docker mounting volumes using Docker engine SDK and Golang
I have being reviewing the docker engine SDK documentation related with running Docker with Golang (https://docs.docker.com/engine/api/sdk/)
I would like to run a container(which is well documented) ...
3
votes
2
answers
3k
views
How to install docker client only without docker engine
I want to write a script which going to use docker API. It will communicate with the docker engine which runs on the host machine.
I don't wanna install the entire docker to my image just CLI and ...
0
votes
0
answers
447
views
How to run minikube on ubuntu 22.04 and docker 17.03.0-ce
I'm trying to run minikube with docker on an os ubuntu but when I run the command minikube start --driver=docker I get the following error:
Failed to start docker container. Running "minikube ...
1
vote
1
answer
601
views
Unable to mount a folder in Docker from container with Go Docker Engine API
I am trying to run docker inside container using Go Docker Engine API. I am able to mount a folder from host system to the container but only empty dir is being copied into the docker inside the ...
4
votes
2
answers
15k
views
What is the reason of error Status: no matching manifest for windows/amd64 10.0.17763 in the manifest list entries, Code: 1?
I've installed Docker on Windows Server 2019 Datacenter 64 bit as on the first screenshort. During the process I've got an error, but docker -v shows installed version.
Then I tried to run my docker-...
2
votes
1
answer
439
views
How to avoid binary characters in the result of a docker engine api http exec call?
When running a
http://127.0.0.1:2375/exec/xxxxx/start
i get a response of type application/vnd.docker.raw-stream
with some binary chars in the response. so for example, when calling "date" ...
-2
votes
1
answer
107
views
How do I dockerize already built rasa project?
I have built my rasa project and have added in my github repository.
Now I want to dockerize it.
How do I do that?
Most of the dockerization tutorials I see, start docker before building project.
-1
votes
1
answer
3k
views
Why am I getting error on running docker ps command [closed]
I have installed docker version 20.10.7 on my Windows 10 machine. But when I run docker ps command I am getting the following error:
error during connect: This error may indicate that the docker ...
0
votes
1
answer
197
views
Docker rm returning ContainerNotFoundException after successfully removing container
I am using a C# API that talks to DockerEngine (Docker.DotNet) to do some things, but notably, in this case, removed a stopped container. Here is my code:
foreach (var container in RunningContainers)
{...
0
votes
2
answers
106
views
How should a docker engine call look like when issued from within one of the app containers
I am a beginner with docker. I want to run a docker engine api call from within one of my docker containers - specifically list all images (images/json endpoint). I am trying to troubleshoot this, and ...
4
votes
1
answer
8k
views
Container abruptly killed with warning "cleaning up after killed shim"
We have recently upgraded from docker version 17.06.0-ce to 18.09.2 on our deployment environment.
Experienced container got killed suddenly after running for few days without much information in ...
0
votes
0
answers
185
views
Increasing the memory allocation to docker daemon (dockerd) on Linux [duplicate]
When using the Docker for macOS or Windows we can set the amount of memory that is allocated to the Docker daemon (by default it is 2GB). My question is there such a setting on Linux (Ubuntu 20.04.1) ...