Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hexedpackets/docker-elixir
Elixir client for the Docker Remote API
https://github.com/hexedpackets/docker-elixir
Last synced: 7 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-07-29T15:22:38.000Z (over 3 years ago)
- Last Synced: 2024-08-09T14:59:43.375Z (3 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
![Hex.pm](https://img.shields.io/hexpm/v/docker)
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"
```