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
2 answers

Docker Error: Server Misbehaving

The details: Client: Docker Enterprise Edition (EE) 2.0 Version: 17.06.2-ee-10 API version: 1.30 Go version: go1.8.7 Git commit: 66261a0 Built: Fri Apr 27 00:38:41 2018 OS/Arch: linux/amd64 Server: Docker Enterprise…
CK5
  • 1,055
  • 3
  • 16
  • 29
0
votes
0 answers

Docker via Engine API: how to run command during container build?

In Docherfile I can write like this: FROM ubuntu:14.04 RUN mkdir /test But I can't find how to do the same when creating a container via Engine API. Not the CMD, that runs upon container start, but RUN, to provision creating container. Is this…
Terion
  • 2,396
  • 3
  • 28
  • 42
0
votes
1 answer

Docker: Capture consolidated cpu and mem usage

While I understand we have Docker remote API (https://my.company.docker.net/containers/{containerId}/stats) to get cpu, mem stats among other details for a given container, I would like to get consolidated cpu, mem usage for all docker instances…
0
votes
0 answers

docker-compose ADD a tarball outside (or inside) of build context always fails no matter what

I've got the following dir tree: project_root |- build_script.sh |- dir_1/Dockerfile and docker-compose.yml |- tarball_dir/ I've got the build_script.sh which calls docker-compose like so: docker-compose -f ./dir_1/docker-compose.yml build…
Sasha Fonseca
  • 2,257
  • 23
  • 41
0
votes
1 answer

Docker Engine fails on Azure Batch node

Scenario I create a pool with multiple nodes (base image is Ubuntu Server 16.04), and provide the following start up command: /bin/bash -c 'set -o pipefail; export DEBIAN_FRONTEND=noninteractive ; sudo -E apt update ; sudo -E apt upgrade -y ; sudo…
M.S.
  • 73
  • 6
0
votes
1 answer

Docker: error during connect

I am getting the above error whenever i am trying to use RSelenium package shell('docker run -d -p 4445:4444 selenium/standalone-chrome') docker: error during connect: Post http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.30/containers/create: open…
0
votes
0 answers

go install fail to generate binary

There are two folds to this problem: 1) Go install not able to generate binary go version go1.7.3 linux/amd64 go env: GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/opt/gopath" GORACE="" GOROOT="/opt/go"…
chingy
  • 31
  • 1
  • 3
0
votes
2 answers

What does the docker-engine provided by the apt repository provide that the docker.io package does not?

If you follow these instructions to get started with kubernetes, you add an apt source (deb http://apt.kubernetes.io/ kubernetes-xenial main) and are told to install the package 'docker-engine'. This package is provided by the kubernetes apt…
micah
  • 1
  • 1
0
votes
1 answer

Create multiple Docker network connections

Monday when I got to work I realized that Docker was something that I had to use to fix some server issues in the company at the moment. So since this week all my work has been studying Docker and try to make it work as soon as possible. So far I…
Diogo Jesus
  • 318
  • 4
  • 19
0
votes
1 answer

Docker - Connect my docker image to another computer outside docker

I am new to Docker. I have an image containing a yii framework. both front and back end are containing yii framework. here is my docker-compose.yml file: version: '2' services: frontend: build: ./dockerfile-frontend container_name:…
0
votes
1 answer

Necessity of docker-machine on Linux

According to the official docker docs, Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with docker-machine commands. Since docker engine can be directly installed on Linux, my question is…
pkaramol
  • 16,451
  • 43
  • 149
  • 324
0
votes
2 answers

Docker engine startup with parameters on OS X Sierra

I have a OS X Sierra. I have a Docker at below OS... I wanna to change startup parameters of Docker Engine (Daemon) on boot my Mac. For example, i want to specify -H tcp://127.0.0.1 parameter for startup.
Pavel
  • 19
  • 1
0
votes
2 answers

Docker swarm mode mesh routing is not working at all

I have docker swarm mode set up with 3 ubuntu 16.04 machines with vagrant. I don't think mesh routing is working at all. If I set up a service like docker service create --name helloworld --replicas 1 -p 8888:80 nginx I can see my service with…
Tim
  • 1,013
  • 1
  • 10
  • 16
-1
votes
1 answer

Why am I getting error on running docker ps command

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 daemon is not running.: Get…
Heer
  • 15
  • 6
-1
votes
1 answer

It's possible to manage MacOS Docker Desktop with Docker Machine?

I have Docker Desktop installed on my Mac (not Docker Toolkit) and I installed docker-machine according to the official documentation I'm triying to add my localhost Docker engine like a docker node under docker machine with no success. The steps…