apache / couchdb-docker

Semi-official Apache CouchDB Docker images
https://github.com/apache/couchdb-docker
Apache License 2.0
261 stars 136 forks source link

3.2.2-ubi: Update UBI dockerfile to CouchDB 3.2.2 #222

Open willholley opened 2 years ago

willholley commented 2 years ago

Overview

CouchDB 3.2.2 is the latest 3.x release. This updates the UBI container to CouchDB 3.2.2 and imports the dockerfile_entrypoint changes to support the COUCHDB_ERLANG_COOKIE environment variable as per the debian-based containers.

Testing recommendations

Locally, you can build the container using:

cd 3.2.2-ubi
docker build . -t couchdb:3.2.2-ubi

The run the container, exposing CouchDB on a local port 5984:

docker run -it -e COUCHDB_USER=admin -e COUCHDB_PASSWORD=password -e NODENAME=127.0.0.1 -e COUCHDB_ERLANG_COOKIE=notamonster -p 5984:5984 couchdb:3.2.2-ubi

GitHub issue number

Related Pull Requests

Checklist