Questions tagged [docker-engine]

Docker Engine runs on Linux to create the operating environment for your distributed applications.

At the core of the Docker platform is Docker Engine, a lightweight runtime and robust tooling that builds and runs your Docker containers. Docker Engine runs on Linux to create the operating environment for your distributed applications. The in-host daemon communicates with the Docker client to execute commands to build, ship and run containers.

See official website for details.

108 questions
3
votes
1 answer

how to install/start docker engine service inside a docker container

I am running jenkins off of the official docker container for jenkins. And i have the following dockerfile following the instructions at https://docs.docker.com/engine/installation/linux/debian/ FROM jenkins:2.32.1 # install docker inside this…
Rakib
  • 12,376
  • 16
  • 77
  • 113
3
votes
2 answers

How to install docker-engine 1.13 on debian Jessie

Following the official documentation from Docker I get only docker-engine 1.12 # apt-cache policy docker-engine docker-engine: Installed: 1.12.4-0~debian-jessie Candidate: 1.12.5-0~debian-jessie Version table: 1.12.5-0~debian-jessie 0 500…
user3313834
  • 7,327
  • 12
  • 56
  • 99
3
votes
1 answer

Using a buildroot distro as a docker *host*

I have an ARM based board that can only run a specific buildroot based distro provided by the manufacturer. I would like to try to run Docker on this board. Any time I combine buildroot and docker in a Google search, I wind up getting pages that…
spierepf
  • 2,774
  • 2
  • 30
  • 52
3
votes
0 answers

docker container ipv6 configuration not working

I've setup a CoreOs host with a public routable /64 ipv6 Subnet. From within the host i have a global ipv6 address which is working fine but i can't get access to ipv6 hosts from within any docker container. These are my current settings to my…
kannix
  • 5,107
  • 6
  • 28
  • 47
2
votes
2 answers

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 two tutorials, which have slightly different instructions.…
whoopscheckmate
  • 746
  • 8
  • 23
2
votes
1 answer

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) but I cannot find how can I mount a volume when…
Ferrandinand
  • 444
  • 3
  • 11
2
votes
1 answer

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-compose file and got an error (look at the second…
mark
  • 275
  • 4
  • 13
2
votes
3 answers

docker-engine to docker-compose to docker compose file relationship

Folks: Thank you in advance for your time and attention. What is the relationship between docker-compose.yml file and the docker-compose cli executeable is the info that I am trying t? Here is my example. $>docker-compose version docker-compose…
savithari
  • 107
  • 1
  • 9
2
votes
1 answer

Pushing a Docker image with gcloud failed

I'm trying to deploy a jhipster project on google cloud. I was able to create a docker image but I haven't been able to push it. On the google cloud SDK shell, when I run : gcloud docker -- push gcr.io/dimadigitallearning/openjdk-app:0.0.1 I get…
Unity
  • 117
  • 1
  • 1
  • 13
2
votes
1 answer

Is it possible to set the default command when the `docker exec` command is run on an already running container?

I have a Dockerfile with the lines: ENTRYPOINT ["echo"] CMD ["hello"] When I run the exec command on an running container I expect: docker exec -it running_container world rpc error: code = 2 desc = oci runtime error: exec failed: exec: "world":…
derrend
  • 4,176
  • 4
  • 27
  • 40
2
votes
1 answer

How to watch docker event with engine-api

Anybody who know how to watch docker event with engine-api the go client for docker, or has any example for this ?
sope
  • 1,619
  • 5
  • 19
  • 37
1
vote
0 answers

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 containerd and…
Nikolai Ehrhardt
  • 570
  • 4
  • 14
1
vote
1 answer

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 container. Please help me out if there is any…
1
vote
1 answer

Spring spring-boot:build-image gives HTTP 500 error

I'm trying to containerize a simple spring boot app with a hello world rest service( initialized from spring-inializer site).I have installed in my local environment Docker Desktop for Windows with Kubernetes enabled. Output from docker version : …
1
vote
0 answers

Docker backend service is suddenly stopping while docker service stays running, why is this happening and how to resolve it?

I am running docker on a windows server 2019 VM. Docker has been working fine on that machine for a year now. But suddenly, last week docker engine was suddenly stopping and so all the containers were not running. Note that the server was not…
YanaT
  • 53
  • 7