docker-hs/README.md
Deni Bertovic 5cac8a0c73
Merge pull request #42 from SKoschnicke/master
added reference to docs and examples in readme
2017-11-01 11:26:07 +01:00

49 lines
1.7 KiB
Markdown

# An API client for docker written in Haskell
| Master |
| -------|
| [![master](https://travis-ci.org/denibertovic/docker-hs.svg?branch=master)](https://travis-ci.org/denibertovic/docker-hs) |
## Current state
Supported Docker Engine Api version: `v1.24` and onwards.
Anything upward of that should work since Docker versions their API.
Older docker version and engine api versions are not supported at the moment.
## Documentation
The API-documentation is available at
[Hackage](https://hackage.haskell.org/package/docker). There are also some
usage-examples in the main library source file,
[`Client.hs`](https://hackage.haskell.org/package/docker/docs/Docker-Client.html).
## Contributing
Please see [CONTRIBUTING.md](CONTRIBUTING.md).
### Project Setup
For working on the library, you need the Haskell Tool Stack installed (see [the
Haskell Tool Stack
website](https://docs.haskellstack.org/en/stable/install_and_upgrade/)). You
also need `make` to use the `Makefile` included in the project. Run `make help`
to see the available commands (for building, running the tests and releasing).
### Tests
Tests are located in the `tests` directory and can be run with `make test`. This
only runs the unit tests.
To run integration tests, you need Docker installed and listening on Port `2375`
of `localhost` (docker only listens to a Unix socket by default, see the [Docker
documentation](https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-socket-option)
for details). Set the environment variable `RUN_INTEGRATION_TESTS`, i.e.
`RUN_INTEGRATION_TESTS=1 make test`.
## IRC
If you have any questions or suggestions you can find the maintainers in `#docker-haskell`
on freenode.