I'm running guacamole via docker containers. How do I define connections? I think I have to modify `user-mapping.xml`, but I'm not sure how to make this inside the container.
My docker-compose is like guacamole: environment: GUACD_HOSTNAME: guacd GUACAMOLE_HOME: /etc/guacamole image: guacamole/guacamole:1.6.0 volumes: - ./guacamole/user-mapping.xml:/etc/guacamole/user-mapping.xml but this does not have any effect. Same for adding a `guacamole.properties`, mapping to `/etc/gaucamole/guacamole.properties`; it is simply ignored by the running docker image.
