Docker Remote API
So, to start, let's stop the Docker service.
- service docker stop
To enable the service, just edit the /etc/default/docker and update the DOCKER_OPTS variable to the following: -H tcp://0.0.0.0:2376 -H unix://var/run/docker.sock.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker Upstart and SysVinit configuration file | |
# Customize location of Docker binary (especially for development testing). | |
#DOCKER="/usr/local/bin/docker" | |
# Use DOCKER_OPTS to modify the daemon startup options. | |
DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4 -g /home/user/docker -H tcp://0.0.0.0:2376 -H unix://var/run/docker.sock" | |
# If you need Docker to use an HTTP proxy, it can also be specified here. | |
#export http_proxy="http://127.0.0.1:3128/" | |
# This is also a handy place to tweak where Docker's temporary files go. | |
#export TMPDIR="/mnt/bigdrive/docker-tmp" | |
Then, start the Docker service.
- service docker start
BOOM. Now you can see a JSON through http://localhost:2376/info, with some details about the Docker's state, how many containers are running/paused/stopped and so on.
This link docker_remote_api shows how you can play with the rest service.