Skip to content

Instantly share code, notes, and snippets.

@fundter
Last active March 13, 2019 16:00
Show Gist options
  • Save fundter/077421d9de2b7249b149374c769530f7 to your computer and use it in GitHub Desktop.
Save fundter/077421d9de2b7249b149374c769530f7 to your computer and use it in GitHub Desktop.
Docker compose file for CouchDB
version: "3.7"
services:
couchdb:
image: couchdb
container_name: couchdb
restart: "unless-stopped"
volumes:
- "data:/opt/couchdb/data"
- "settings:/opt/couchdb/etc"
ports:
- "5984:5984"
networks:
- net
networks:
net:
name: couchdb
volumes:
data:
name: couchdb-data
settings:
name: couchdb-settings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment