docker:enable_docker_remote_api
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docker:enable_docker_remote_api [2020/04/09 10:29] – peter | docker:enable_docker_remote_api [2020/05/13 08:40] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Docker - Enable Docker Remote API ====== | ||
- | |||
- | Docker also provides a nice remote REST API. | ||
- | |||
- | Edit / | ||
- | |||
- | <file bash / | ||
- | DOCKER_OPTS=' | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | Instead of **/ | ||
- | |||
- | If running systemd docker daemon the you need to create a systemd dropin file under: **/ | ||
- | |||
- | With the contents: | ||
- | |||
- | <file bash / | ||
- | [Service] | ||
- | ExecStart= | ||
- | ExecStart=/ | ||
- | </ | ||
- | |||
- | **NOTE: | ||
- | |||
- | It also recommends binding on 127.0.0.1 instead of 0.0.0.0, unless you have a good reason! | ||
- | </ | ||
- | |||
- | |||
- | This will have Docker bind to port 1234 which will be used by the Docker Remote API. | ||
- | |||
- | One you have saved your changes, you will need to restart the Docker process by running the following command: | ||
- | |||
- | <code bash> | ||
- | sudo systemctl daemon-reload // reloading daemon definitions | ||
- | sudo systemctl restart docker | ||
- | </ | ||
- | |||
- | To test that the Docker Remote API has been properly enabled, we will list the Images currently in Docker: | ||
- | |||
- | <code bash> | ||
- | sudo docker images | ||
- | </ | ||
- | |||
- | Test by performing a GET operation on the following URL: http:// | ||
- | |||
- | You can also easily test this by using CURL on the command-line by running the following command: | ||
- | |||
- | <code bash> | ||
- | curl -X GET http:// | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== References ===== | ||
- | |||
- | http:// | ||
docker/enable_docker_remote_api.1586428163.txt.gz · Last modified: 2020/07/15 09:30 (external edit)