Files
hereconnect/docker-compose.yml
T

25 lines
437 B
YAML
Raw Normal View History

2024-11-24 22:45:50 +02:00
services:
couchdb:
2024-12-03 11:49:01 +02:00
image: hereconnect/service-couchdb:${COUCHDB_TAG:-latest}
2024-11-24 22:45:50 +02:00
ports:
2024-12-03 11:49:01 +02:00
- "127.0.0.1:15984:5984"
2024-11-24 22:45:50 +02:00
volumes:
2024-12-03 11:49:01 +02:00
- couchdb_data:/opt/couchdb/data
environment:
- COUCHDB_USER=${COUCHDB_USER}
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
2024-11-24 22:45:50 +02:00
restart: unless-stopped
2024-11-27 15:57:11 +02:00
logging:
driver: "json-file"
options:
max-size: "100m"
2024-12-03 11:49:01 +02:00
max-file: "10"
volumes:
couchdb_data: