Eoncms docker - how to enable multi user?

I have installed emoncms as a docker container. I am trying to enable multi user. I understand that I should add enable_multi_user = true to the [interface] section of settings.ini, but I am not sure where to find this file when running it as a docker container. Can anyone point me in the right direction?

I found a solution. Not sure if it is the best solution, but it works:

Logged into the container:
docker exec -it emoncms-docker_web_1 /bin/bash

Installed a text editor:
apt update
apt install vim

Edited the settings.ini file:
vi ../emoncms/settings.ini

Added this to the file:
[interface]
enable_multi_user = true

After refreshing the login page I was able to add more users