Files
hereconnect/docker-compose.yml
T

20 lines
377 B
YAML
Raw Normal View History

2024-11-24 22:45:50 +02:00
services:
couchdb:
image: couchdb:latest
env_file:
- couchdb.env
ports:
- "127.0.0.1:5984:5984"
volumes:
- ./services/couchdb/data:/opt/couchdb/data
- ./services/couchdb/config:/opt/couchdb/etc/local.d
restart: unless-stopped
2024-11-27 15:57:11 +02:00
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "10"