I use this docker command and it works as expected. It starts the libreoffice on port 3000 without any problem and I can install almost all extensions including librepythonista.
docker run -d
--name=libreoffice
--security-opt seccomp=unconfined #optional
-e PUID=1000
-e PGID=1000
-e TZ=Etc/UTC
-p 3000:3000
-p 3001:3001
-v /path/to/config:/config
--restart unless-stopped
lscr.io/linuxserver/libreoffice:latest
But I am not able to run the python code after installing LibrePythonista extension. The extension is installed, toolbar icons are visible but the python IDE not initialized.
I use this docker command and it works as expected. It starts the libreoffice on port 3000 without any problem and I can install almost all extensions including librepythonista.
docker run -d
--name=libreoffice
--security-opt seccomp=unconfined
#optional-e PUID=1000
-e PGID=1000
-e TZ=Etc/UTC
-p 3000:3000
-p 3001:3001
-v /path/to/config:/config
--restart unless-stopped
lscr.io/linuxserver/libreoffice:latest
But I am not able to run the python code after installing LibrePythonista extension. The extension is installed, toolbar icons are visible but the python IDE not initialized.