Knut Ahlers
Knut Ahlers
```console # docker export $(docker create ghcr.io/luzifer/ots:develop@sha256:064debe231181ba6a0a3df08f602cdad2fb67cb95216e88158bd8f9e741fabc2) | tar -x WARNING: The requested image's platform (linux/arm64) does not match the detected host platform (linux/amd64/v4) and no specific platform was requested...
That's great! Then we just need to get that milestone out… …need to see when I can make time for that… …hopefully soon.
Same issue as with Keycloak: The token returned from the server is too long to be stored inside one cookie which is the way nginx-sso stores the session. This needs...
> But wouldn't it make sense to also use this on the replace() just before? In general, yes… …though I don't know any way to produce a path like `some//path`...
Okay I think I got the regex replace right now… What a mess… Without the extra replace just adding in the separator on Windows systems it would search for a...
> Would it make sens to copy them during the build process? **Please don't!** Docker images are not supposed to contain credentials / secrets! If you push that image somewhere...
Eh on Windows maybe try to pass the part in front of the colon with backslashes instead of slashes: ```bash docker run --rm -ti \ -p 3018:3018 \ -v .\credentials:/opt/twitchat/credentials:ro...
Well, where you place those folders is entirely up to you. Back when I was using plain Docker I had persistent data stored at `/data//...`, some prefer `/home//...`, so basically...
Hm if you adjust the app to use one `data` folder it makes sense to mount that one instead of mounting three different folders. Would make it more easy run...
You're accessing the site through `http`. The [WebCrypto-API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) used for the en-/decryption requires access either on `http://localhost` or using TLS. Shoud add a warning in the frontend when this is...