Skip to content

Instantly share code, notes, and snippets.

@finesse-fingers
Last active April 3, 2021 08:29
Show Gist options
  • Save finesse-fingers/c380a22213af545a4798dae7cf2f0598 to your computer and use it in GitHub Desktop.
Save finesse-fingers/c380a22213af545a4798dae7cf2f0598 to your computer and use it in GitHub Desktop.
Start a CouchDB container with mount
mkdir -p /home/ubuntu/couchdb/data
docker run -d \
--restart unless-stopped \
-v /home/ubuntu/couchdb/data:/opt/couchdb/data \
-e COUCHDB_USER=admin \
-e COUCHDB_PASSWORD=strongPassword \
-p 5984:5984 \
--name couchdb \
couchdb:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment