Results 5 comments of Patrick

Either setting the firewall to non-default or adding a simple way to disable it would go a long way. Currently, I have to go in afterwards and delete the spurious...

Additionally an API to call Theatre Inserts directly, instead of relying on ChatMessage hooks (and the really flaky way TI looks for a user typing) would help tremendously (as well...

https://github.com/League-of-Foundry-Developers/fvtt-module-theatre/blob/3655e4d7ca5b69e8ef926bc87b0896b7670c6c49/src/module.js#L270 This looks like it could be fixed by changing the replace to include both `` and `` ```js textContent = textContent.replace(//g, "\n"); ```

I've had to use a post_start docker hook in my compose to handle this: ```yaml services: semaphore: post_start: - user: root command: ln -s /home/semaphore/.ssh/known_hosts /etc/ssh/ssh_known_hosts - user: root command:...

The workaround I ended up using was: Adding `localhost` with connection/become settings: ```yaml - name: Add a host for localhost ansible.builtin.add_host: name: localhost ansible_connection: local ansible_become: false ```