[Since a lot of server configuration seems to be done through a `default.ini` file](https://docs.couchdb.org/en/stable/config/intro.html#configuration-files), it would be great if I could edit a configuration file outside of the container, which then gets (re-)mounting, overriding the default configuration local to the container. Elsewhere, I've resolved this like so in the Docker configuration: ``` volumes: - type: bind source: /host/path/to/default.ini target: /container/path/to/default.ini ```