Skip to content

Instantly share code, notes, and snippets.

@hamzamu
Created January 11, 2022 07:55
Show Gist options
  • Save hamzamu/2c2a12c36f132acfb130278fc0f5ccf0 to your computer and use it in GitHub Desktop.
Save hamzamu/2c2a12c36f132acfb130278fc0f5ccf0 to your computer and use it in GitHub Desktop.
Install CouchDB with Docker/ Docker-Compose
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