Damian Szetela
Exception when importing Python's CV2 lib
In my case I use the docker compose file with build directive - it references docker build folder. That in turn takes windmill image and adds needed changes (certificates in my case). You can do the same, but with libgl.
See this link for a bit more description how this works:
https://stackoverflow.com/a/45173812
16 replies
Self-hosted instance workspace bulk migration
Maybe this will be of some help ...
Recently I did a Postgresql upgrade on Debian using apt-get upgrade command. After that was done there were 2 versions of postgresql listed under postgresql service. To upgrade it from version 13 to 15 I had to do following steps:
sudo su - postgres
pg_lsclusters
pg_dropcluster --stop 15 main
pg_upgradecluster 13 main
exit
systemctl stop postgresql@13-main
sudo su - postgres
pg_dropcluster --stop 13 main
exit
apt purge postgresql-13 postgresql-client-13
9 replies