mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
13 lines
238 B
YAML
13 lines
238 B
YAML
|
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
|