Created
January 11, 2022 07:55
-
-
Save hamzamu/2c2a12c36f132acfb130278fc0f5ccf0 to your computer and use it in GitHub Desktop.
Install CouchDB with Docker/ Docker-Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
couchserver: | |
image: couchdb | |
restart: always | |
ports: | |
- "5984:5984" | |
environment: | |
- COUCHDB_USER=admin | |
- COUCHDB_PASSWORD=YOURPASSWORD | |
volumes: | |
- ./dbdata:/opt/couchdb/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment