Repository: couchdb-docker Updated Branches: refs/heads/master 3154b94cf -> b368315ab
readme: tweaks Project: http://git-wip-us.apache.org/repos/asf/couchdb-docker/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-docker/commit/b368315a Tree: http://git-wip-us.apache.org/repos/asf/couchdb-docker/tree/b368315a Diff: http://git-wip-us.apache.org/repos/asf/couchdb-docker/diff/b368315a Branch: refs/heads/master Commit: b368315ab5f399cde5d3967366abc05f971a0a41 Parents: 3154b94 Author: klaemo <[email protected]> Authored: Mon Nov 2 17:55:29 2015 +0100 Committer: klaemo <[email protected]> Committed: Mon Nov 2 17:55:29 2015 +0100 ---------------------------------------------------------------------- README.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-docker/blob/b368315a/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index fbdf165..7fcd2be 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,13 @@ If you're looking for a CouchDB with SSL support you can check out [klaemo/couch - Version (stable): `CouchDB 1.6.1`, `Erlang 17.3` - Version (dev): `CouchDB 2.0 developer preview`, `Erlang 18.0` +## Features + +* built on top of the solid and small `debian:jessie` base image +* exposes CouchDB on port `5984` of the container +* runs everything as user `couchdb` (security ftw!) +* docker volumes for data, logs and config + ## Run (stable) Available in the docker index as [klaemo/couchdb](https://index.docker.io/u/klaemo/couchdb/) @@ -33,16 +40,6 @@ curl http://localhost:5984 curl http://localhost:5984 ``` -## Features - -* built on top of the solid and small `debian:wheezy` base image -* exposes CouchDB on port `5984` of the container -* runs everything as user `couchdb` (security ftw!) -* docker volumes for data and logs - -The previous version of this image used to come with a process manager to keep -CouchDB running. As of Docker 1.2 you can use the `--restart` flag to accomplish this. - ## Run (dev) Available on the docker registry as [klaemo/couchdb:2.0-dev](https://index.docker.io/u/klaemo/couchdb/) @@ -81,12 +78,12 @@ docker run -i -t klaemo/couchdb:2.0-dev --admin=foo:bar You can use `klaemo/couchdb` as the base image for your own couchdb instance. You might want to provide your own version of the following files: -* `local.ini` for CouchDB +* `local.ini` for your CouchDB custom couchdb config Example Dockerfile: ``` -FROM klaemo/couchdb +FROM klaemo/couchdb:latest COPY local.ini /usr/local/etc/couchdb/ ```
