couchDB #3200
Replies: 6 comments 5 replies
-
|
Please do! |
Beta Was this translation helpful? Give feedback.
-
|
This would actually be a big addition, since there is not actually an easy/affordable way to host CouchDB outside of Cloudant or Couchbase. It's not a super-popular database but it's really a handle tool in the belt when you need it! |
Beta Was this translation helpful? Give feedback.
-
|
coolify/templates/compose/budibase.yaml Lines 105 to 118 in 4dc46b4 I'm running based on the image included in the above configuration. (budibase/couchdb, currently default version is 3.3.3) Below is the docker compose configuration I used in coolify. services:
couchdb:
image: budibase/couchdb
environment:
- SERVICE_FQDN_COUCHDB
- COUCHDB_PASSWORD=$SERVICE_PASSWORD_COUCHDB
- COUCHDB_USER=$SERVICE_USER_COUCHDB
- TARGETBUILD=docker-compose
healthcheck:
test: ["CMD", "bash", "-c", "curl -f -u $${COUCHDB_USER}:$${COUCHDB_PASSWORD} http://localhost:5984/"]
interval: 15s
timeout: 15s
retries: 3
start_period: 10s
container_name: couchdb #shortened name
volumes:
- 'couchdb-data:/opt/couchdb/data'
- 'config:/opt/couchdb/etc/local.d'
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.couchdb.rule=Host(`yourhost.tld`)"Labels required for basic authentication to bypass |
Beta Was this translation helpful? Give feedback.
-
|
Any possible progress on this yet? |
Beta Was this translation helpful? Give feedback.
-
|
When i start wit a docker compose solution, oolify automatically detects it as a database, when i check the |
Beta Was this translation helpful? Give feedback.
-
|
Would love to see CouchDB added to the official supported list of databases |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Add couchDB as a one click Database
Beta Was this translation helpful? Give feedback.
All reactions