From a6568e99800280a74ec79cb5e171873cd287c3ea Mon Sep 17 00:00:00 2001 From: jums Date: Wed, 26 Feb 2025 07:39:01 +0100 Subject: [PATCH] docker-compose: document ports in comment to ease admin access to the db --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 828aba3..d9399ac 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,6 +26,10 @@ services: environment: COUCHDB_USER: ${COUCHDB_USER} COUCHDB_PASSWORD: ${COUCHDB_PASSWORD} + # Uncomment ports to get access to the db + # ie. for database transformation, querying, UI access (http://localhost:5984/_utils/) + # ports: + # - "5984:5984" volumes: - 'couchdb:/opt/couchdb/data' - './configs:/opt/couchdb/etc/local.d'