Ralph Thesen

Results 138 comments of Ralph Thesen

The process trying to write the repository is running as uid=33. First try: Set the `file_mode` and `dir_mode` to `0777`: ```yaml ... volumes: otterwiki: driver_opts: type: cifs o: "username=XXX,password=XXX,file_mode=0777,dir_mode=0777" device:...

Sounds like an error in the mount. 🤔 Can you check if there was any file or directory created by a previous try? Maybe change the path to: ```yaml device:...

Hey @pranavchaturved, I can see that a feature supporting comments can be useful. Question is: How and where to display the comments? For sure they should pollute the page that...

Hey @jamess60, thanks for bringing this up. This is for sure a good idea. I've not thought about it, since I deploy the otterwikis in kubernetes where I can run...

Released in [v2.10.6](https://github.com/redimp/otterwiki/releases/tag/v2.10.6).

Hey @bradbeattie, thanks for sharing this... thats a surprisingly increase of cpu resources used. Is this purely from the [Dockerfile healthcheck](https://github.com/redimp/otterwiki/blob/3b236aa4f7ae1acecf95aaac3a6b8703395333af/Dockerfile#L88)?

Thanks for digging into this. Reducing the interval from `1m` to `5m` seems like a sensible middle ground to me. Will update the Dockerfiles.

Fix released in [2.14.2](https://github.com/redimp/otterwiki/releases/tag/v2.14.2).

Hey @locrianz, thank you for reaching out. There is no option to change this text, it is hardcoded as "placeholder" in the template: https://github.com/redimp/otterwiki/blob/d6d5f3c38a48f2e12859854560248d1d712e2529/otterwiki/templates/register.html#L22 A workaround would be to patch...

It's not a very elegant solution but it works: With a `docker-compose.yaml`: ```yaml services: otterwiki: image: redimp/otterwiki:2 restart: unless-stopped ports: - 8081:80 volumes: - ./app-data:/app-data - ./template/register.html:/opt/venv/lib/python3.11/site-packages/otterwiki/templates/register.html ``` and `template/register.html`:...