Questions tagged [docker-api]

Use this tag with the Docker Engine API.

Docker runs as a client-server accepting request via the Docker Engine API.

Image

189 questions
0
votes
3 answers

Enabling Docker Remote API on Ubuntu 14.04 with daemon startup

I´m struggeling with the activation of Remote API for docker. Already tried to set configuration by the following command: DOCKER_OPTS="-H tcp://127.0.0.1:2375" in following files: /etc/default/docker and /etc/init.d/docker.conf Then restarted…
flyOWX
  • 215
  • 1
  • 2
  • 11
0
votes
0 answers

docker remote api set env

How to overwrite environment variables inside container after creation with remote API? I see no such option in container update method description. But docker itself is doing that when linking containers (source) to provide port and host…
Paul Rumkin
  • 6,737
  • 2
  • 25
  • 35
0
votes
1 answer

Mappings between Docker Remote API and its command line client

Docker documentation is pretty good at describing what you can do from the command line. It also gives a pretty comprehensive description of the commands associated with the remote API. It does not, however, appear to give sufficient context for…
Factor Three
  • 2,094
  • 5
  • 35
  • 51
0
votes
1 answer

Docker API Security - How prevent certain functionality from client?

I have developed a solution based around Docker and the Docker API. Now, I am trying to make it as secure as possible. I have enabled TLS and have configured my own Docker Registry to help reduce the risk of unwanted images and unauthorized…
Wanderer
  • 1,583
  • 4
  • 20
  • 36
0
votes
0 answers

Uploading and storing Docker certificates for connecting to remote Docker machines

From reading the Docker Remote API documentation: Docker Daemon over SSL Ruby Docker-API It appears the the correct way to connect to remote Docker machines is by letting the application know the location of the certificates to connect to a machine…
roguequery
  • 964
  • 13
  • 28
0
votes
1 answer

security-opt with docker-api gem

I want to use security-opt option with docker-api gem .How can I implement it. I have found nothing about it in docker-api documentation. Somebody please help.
Neetesh
  • 71
  • 2
  • 6
-1
votes
1 answer

how to specify sync-mode and network type while creating docker container using docker go pkg in Golang application?

I am trying to create docker container from my golang application using Docker Engine SDKs and Docker API this is the command i want to implement in my application: docker run --name rinkeby-node ethereum/client-go --rinkeby --syncmode full this…
M.abdelrhman
  • 958
  • 14
  • 24
-1
votes
1 answer

What is the Docker SDK for Python library returning from APIClient.inspect_distribution()

The metadata returned from here: https://docker-py.readthedocs.io/en/stable/api.html#docker.api.image.ImageApiMixin.inspect_distribution Contains a digest that doesn't match anything else I can find from the docker API. What exactly is the source of…
north.mister
  • 500
  • 1
  • 7
  • 24
-1
votes
3 answers

Docker API, remote API, Client API

I would like to know when to use and the difference between Docker API, Docker remote API, Client API and Compose API. TIA.
1 2 3
12
13