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
1
vote
1 answer

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" inside a docker container, the response always looks like…
michabbb
  • 880
  • 2
  • 7
  • 27
1
vote
0 answers

Docker-py client gives "invalid client port specification"

I am using the docker-py client to create containers on a need basis. So for this, I am using a generator to come up with a port number and trying to use httpd image on a particular port of the host from the generator. But, the client gives out…
j-code
  • 11
  • 2
1
vote
1 answer

Docker version documentation links

Please help to understand with the docker version numbers. Docker version 1.13.1, build 7f2769b/1.13.1 . ( https://docs.docker.com/release-notes/docker-engine/) and Docker version 19.03.5, build 633a0ea (…
1
vote
1 answer

While docker run: docker: failed to register layer: Error processing tar file(exit status 1): no space left on device

my Docker Runtime crashed while cleaning up the linux engine. So I reinstalled Docker by unsing zypper. When I run docker run --detach --hostname psmonster --env GITLAB_OMNIBUS_CONFIG="external_url 'http://psmonster:20080/';…
markus0074
  • 309
  • 1
  • 4
  • 14
1
vote
1 answer

How to get currently running containers of a service using Docker Engine API?

I'm trying to get the currently running containers of a service to visualize them like in Portainer.io. Portainer shows the currently running machines and replicas like 5/8. I can get desired replica number using engine api with /services…
Capan
  • 686
  • 1
  • 14
  • 32
1
vote
2 answers

Docker - Is volume mapping of socket file an override behavior?

Below is the code snippet of jenkins image taken from here: # Install Docker Engine RUN apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D && \ echo "deb https://apt.dockerproject.org/repo…
overexchange
  • 15,768
  • 30
  • 152
  • 347
1
vote
2 answers

Is there a way to enforce inter-module dependencies/initialization order?

Using Azure IoT Edge, I have not found any way to guarantee the initialization order of containers/modules in a deployment. Suppose for example, I have 2 modules, A and B. A is a server and B is a client that depends on A. As far as I know, there's…
Jack
  • 13
  • 5
1
vote
0 answers

Artifactory docker registry: Forbidden error

We are trying up to setup Artifactory in our corporate setup (there is a proxy server in the mix). Nginx, Artifactory and PostgreSQL are running in containers (spun up using JFrog's docker compose example). But I am unable to successfully login to…
CK5
  • 1,055
  • 3
  • 16
  • 29
1
vote
1 answer

Can not start docker engine in Oracle Linux

I followed the instructions in this blog "https://blogs.oracle.com/hlsu/install-docker-on-oracle-linux-7" to install docker engine in my Oracle Linux 7 server. This is my log for yum install docker-engine : Loaded plugins: langpacks ol7_UEKR4 …
Amal Vijayan
  • 649
  • 2
  • 6
  • 26
1
vote
1 answer

Avoid docker exec zombie processes when connecting to containers via bash

Like most docker users, I periodically need to connect to a running container and execute various arbitrary commands via bash. I'm using 17.06-CE with an ubuntu 16.04 image, and as far as I understand, the only way to do this without installing ssh…
THX1138
  • 1,518
  • 14
  • 28
1
vote
1 answer

Container healthcheck status via tasks json

I am trying to fetch container status using the docker remote API. v1.26 I am making /tasks api call to fetch the list of tasks for a node. Is there a way to get the container status from the GET /tasks json which maps to the…
sam
  • 568
  • 1
  • 8
  • 16
1
vote
1 answer

Can interlock or registrator be still helpful after docker engine 1.12.3 in swarm mode?

docker engine 1.12.3 in swarm mode comes with the ingress LB with the help of routing mesh which redirects to only the task which is healthy . Just wondering if interlock(https://github.com/ehazlett/interlock) & registrator…
vivekyad4v
  • 13,321
  • 4
  • 55
  • 63
0
votes
1 answer

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: 24.0.5 API version: 1.43 Go…
0
votes
1 answer

filesystem layer verification failed for digest for native docker

I'm running docker on Ubuntu 22.04 (CLI, not Docker-Desktop) and I keep getting layer verification error. See the example below: mjozwikowski:~$ docker -D pull postgres:latest latest: Pulling from library/postgres 648e0aadf75a: Downloading…
0
votes
0 answers

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 didn’t send any data. ERR_EMPTY_RESPONSE I installed docker and portainer using the below commands: dnf install -y…
jay
  • 1
  • 2