mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
18 lines
312 B
YAML
18 lines
312 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
couchdb:
|
|
image: couchdb:latest
|
|
ports:
|
|
- '5984'
|
|
volumes:
|
|
- couchdb-data:/opt/couchdb/data
|
|
environment:
|
|
- COUCHDB_USER=${COUCHDB_USER}
|
|
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
couchdb-data:
|
|
driver: local
|