docker-compose.yml: couchdb: increase Erlang I/O threads

This commit is contained in:
maxlath
2025-03-05 16:13:20 +01:00
parent e2ef349a1d
commit f9419539ba

View File

@@ -22,6 +22,9 @@ services:
context: ./couchdb context: ./couchdb
dockerfile: Dockerfile.couchdb dockerfile: Dockerfile.couchdb
env_file: .env env_file: .env
environment:
# See https://docs.couchdb.org/en/stable/maintenance/performance.html#disk-and-file-system-performance
- 'ERL_FLAGS=+A 4'
# Uncomment ports to get access to the db # Uncomment ports to get access to the db
# ie. for database transformation, querying, UI access (http://localhost:5984/_utils/) # ie. for database transformation, querying, UI access (http://localhost:5984/_utils/)
# /!\ Beware that exposing container ports like this might bypass your firewall rules # /!\ Beware that exposing container ports like this might bypass your firewall rules