Had an issue with this container when attempting to use 02.forge UI. Getting the following error:
OperationalError: no such column: "size" - should this be a string literal in single-quotes?
Using information in this thread: https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16856
I tried downgrading libsqlite to 3.48 and was able to resolve the error
for anyone who wants a fix until maintainer can update just edit this line in 02.forge.sh:
conda install -c conda-forge python=3.11 pip gcc gxx libcurand --solver=libmamba -y
to
conda install -c conda-forge python=3.11 libsqlite=3.48 pip gcc gxx libcurand --solver=libmamba -y
Then just reset the venv by deleting the file.
Thanks to the creator for putting this container together!