Well, if people decide to lock themselves into eco systems like the one Adobe provides... Not saying GIMP (for instance) has 1:1 feature parity or anything. Not at all. But to me, those are just tools to get work done. And I can use a slightly different tool just fine, even if it's a little rough around the edges.
But I'm a programmer and systems administrator, not a designer.
Hey, there. This should solve your problem, I guess:
docker compose down
docker compose up -d postgres
docker compose exec postgres psql -U lemmy
UPDATE local_site SET private_instance = 'f' WHERE id = '1';
\q
docker compose up -d
Let me know if that worked or not.
Edit for shorter version:
docker compose exec postgres psql -U lemmy -c "UPDATE local_site SET private_instance = 'f' WHERE id = '1';"
Then restart lemmy.