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
0
votes
1 answer

How does docker-engine handle outgoing and incoming traffic from/to multiple containers?

I currently have about 5 webserver running behind a reverse proxy. I would like to use an external AD to authentificate my users with the ldap protocol. would docker-engine be able to differentiate between each container by itself ? My current…
0
votes
1 answer

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) { if (container.State == "dead" ||…
zkatancik
  • 1
  • 3
0
votes
1 answer

Is there a downside for running docker experimental features?

I know that Docker allows enabling experimental features on the daemon side in a rather simple way: Add/update /etc/docker/daemon.json: { "experimental": true } And enabling experimental features brings a couple of cool things (e.g. Metrics…
dejanualex
  • 3,872
  • 6
  • 22
  • 37
0
votes
2 answers

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 want to see the issue live from the command…
Veverke
  • 9,208
  • 4
  • 51
  • 95
0
votes
1 answer

RUN Script after sql service up in dockerfile

I have a database for my app and I want to create it in run time docker I have a file CreateDB.sh and it creates all the tables and stored procedure that I want. I tried this : FROM mcr.microsoft.com/mssql/server ENV ACCEPT_EULA=Y \ …
0
votes
0 answers

Docker container not running (odoo with docker)

I'm trying to run odoo as SAAS service using docker .I created Odoo image successfully but when i run the image to build a container it is stopped on starting odoo stage , here is sample output of the command : $ docker container run -it…
semerouk
  • 3
  • 2
0
votes
0 answers

Increasing the memory allocation to docker daemon (dockerd) on Linux

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) as well or is the docker daemon free to use as…
0
votes
1 answer

Docker Volume Persistence

I am trying to learn Docker. I have installed Docker Desktop on my Windows10 Pro computer. I started with getting a PHP, MySQL website up and running using Docker. My docker-compose.yml looks like version: "3.8" services: www: build: . …
0
votes
0 answers

Docker engine api create container with privileged mode

I'm using docker engine api to build image and then create and run container. What I need is run container with --privileged flag. But I couldn't see anything in docker engine api reference…
0
votes
1 answer

Running Docker Engine API behind Nginx

I'm trying to run and use docker behind nginx as a reverse proxy. Everything works fine except when docker responds with a raw stream "application/vnd.docker.raw-stream" instead of normal HTTP response. This is happening with endpoints /start,…
mehulmpt
  • 15,861
  • 12
  • 48
  • 88
0
votes
1 answer

Is there something like save and restore snapshots in docker

I love docker and especially for complex CI environments it is just amazing. The one thing that I really miss when working with Docker compared to a Virtual Machine is the ability to save and restore snapshots of the container and I was wondering…
doberkofler
  • 9,511
  • 18
  • 74
  • 126
0
votes
1 answer

Docker engine API in a swarm

I have a swarm with 2 nodes where I create two services. One on each node. The service running on manager node is using the docker engine API to get some information. My question is: Is it possible to obtain data from the container running on the…
MLGonc
  • 99
  • 2
  • 12
0
votes
1 answer

BLOB_UNKNOWN on valid mcr.microsoft.com/windows/servercore:ltsc2019-amd64 container image

For the past few days, I’ve been playing around with the docker registry API and writing a small tool that scopes down its interaction with the Microsoft container registry (mcr.microsoft.com). My ultimate goal is to be able to download an image…
0
votes
1 answer

Moving from docker ce to docker-EE

I have built all my micro services on a docker-ce engine and got all the system running with Kubernetes. Now I want to start working with docker-EE and from what I have read I couldn't understand if I will be able to use all my images with the new…
Shahar Hamuzim Rajuan
  • 5,610
  • 9
  • 53
  • 91
0
votes
1 answer

Linking 2 docker container together via creating services (swarm mode) by using docker api

I am using docker api to create containers, networks, services etc but my requirement is that I want my public facing container to communicate with another container running on the same network. For that to happen I can use container names as the…