https://github.com/hexedpackets/docker-elixir
Elixir client for the Docker Remote API
https://github.com/hexedpackets/docker-elixir
Last synced: 5 months ago
JSON representation
Elixir client for the Docker Remote API
- Host: GitHub
- URL: https://github.com/hexedpackets/docker-elixir
- Owner: hexedpackets
- License: apache-2.0
- Created: 2015-05-09T19:24:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-07-29T15:22:38.000Z (over 3 years ago)
- Last Synced: 2024-11-01T09:34:45.477Z (5 months ago)
- Language: Elixir
- Size: 30.3 KB
- Stars: 25
- Watchers: 2
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Elixir client for the Docker Remote API. (Third Party APIs)
- fucking-awesome-elixir - docker - Elixir client for the Docker Remote API. (Third Party APIs)
- awesome-elixir - docker - Elixir client for the Docker Remote API. (Third Party APIs)
README
# docker-elixir

Elixir client for the Docker Remote API using HTTPoison.
## Docker endpoint
By default, the client will attempt to connect to Docker on the unix socket path `/var/run/docker.sock`. This can be overridden with either an HTTP endpoint or different path by either setting the `DOCKER_HOST` environmental variable, or as a config option:
```elixir
config :docker, host: "http://localhost:2561"
```