mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
add couchdb
This commit is contained in:
parent
dc9e106db8
commit
6671465275
@ -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
7
couchdb/README.md
Normal 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
|
12
couchdb/docker-compose.yml
Normal file
12
couchdb/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user