1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-21 17:56:53 +02:00

add couchdb

This commit is contained in:
kev 2023-11-22 17:33:49 +08:00
parent dc9e106db8
commit 6671465275
3 changed files with 20 additions and 0 deletions

View File

@ -330,6 +330,7 @@ A collection of delicious docker recipes.
- [x] cp-kafka-rest
- [x] ksqldb-cli
- [x] ksqldb-server
- [x] couchdb
- [x] schollz/croc
- [x] streamsets/datacollector
- [x] daskdev

7
couchdb/README.md Normal file
View File

@ -0,0 +1,7 @@
couchdb
=======
[CouchDB][1] is a seamless multi-master syncing database with an intuitive
HTTP/JSON API, designed for reliability.
[1]: https://github.com/apache/couchdb

View File

@ -0,0 +1,12 @@
version: "3.8"
services:
couchdb:
image: couchdb
ports:
- "5984:5984"
volumes:
- ./data:/opt/couchdb/data
environment:
- COUCHDB_USER=admin
- COUCHDB_PASSWORD=password
restart: unless-stopped