I am looking for a way to keep some data (strictly speaking only two values) persistent even after a page reload. I guess this page reload inits a new session !?!?
I’ve found some cookie solutions but so far these all seems not persistent after page reloading.
I’ve found the cookies components to be somewhat tricky to use reliably for things like this, but I would recommend considering connecting to a database of some sort – here are some examples Connect to data sources - Streamlit Docs
Would it be sufficient for you to store the data in your internal filesystem, i.e. from where you’re deploying the docker container? In that case, you could mount a volume in docker (mapping a directory in your filesystem to a directory in the docker container). This way your docker output data would persist in your local filesystem.