diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/docker-compose.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml new file mode 100644 index 0000000..46f62d8 --- /dev/null +++ b/docker/docker-compose.yaml @@ -0,0 +1,17 @@ +version: '3.8' +services: + couchdb: + image: couchdb + ports: + - "5984:5984" + environment: + - COUCHDB_USER + - COUCHDB_PASSWORD + volumes: + - type: volume + source: couchdb-data + target: /opt/couchdb/data + +volumes: + couchdb-data: + external: false |