this post was submitted on 26 Jun 2024
1 points (100.0% liked)
Lemmy Support
4650 readers
1 users here now
Support / questions about Lemmy.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Well the join-lemmy.org docker-compose file reads
docker.io/postgres:16-alpine
, and with your mention, I switched from version 15 to 16 but the postgres container errored with not being compatible with a version 15 initialized data directory.My instance has been running fine on v15 so far. (I switched back to 15 in the compose file and it works again)
Would be nice with lemmy documentation how to migrate from 15 to 16.
You need to export your DB and impirt it again. You can not simply upgrade. Switch back to v15 and make a dump.
Here is a little guide.
Pict-rs can be upgraded simply. Edit your docker-compose.yml and spin it up. After tge upgrade is complete, you can do the postgres upgrade
I successfully migrated postgres 15 to 16. I followed the general idea of the guide you posted, but I found it a little easier to do a slightly different process. Here's what I did:
docker-compose down
for the lemmy instancedocker-compose.yml
file and comment out all of the services except postgres. In addition, add a new volume to the postgres service that looks something like this:- ./volumes/miscfiles:/miscfiles
docker-compose up -d
for the lemmy instance (the only container running at this point will be postgres)docker exec -it [container name] pg_dumpall -U [username] -f /miscfiles/pgdumpall20240628
(I think this will work, but it's not exactly what I did... rather, I randocker exec -it [container name] bash
, and then ranpgdumpall -U [username] -f /miscfiles/pgdumpall20240628
. The end result is a dumpall file saved in the./volumes/miscfiles
directory on the host machine)docker-compose down
mv ./volumes/postgres ./volumes/postgresBAK20240628
(move your existing postgres data to a new directory for backup purposes)mkdir ./volumes/postgres
(re-create an empty postgres data folder. make sure the owner and permissions match thepostgresBAK20240628
directory)docker-compose.yml
and update the postgres image tag to the new versiondocker-compose up -d
(you'll now have a brand new postgres container running with the new version)docker-exec -it [container name] psql -U [username] -f /miscfiles/pgdumpall20240628
(again, I think this will work, but Ibash
ed in and ran the command from within the container. This also allows you to watch the file execute all of the commands... I don't know if it will do that if you run it from the host.)docker-compose down
docker-compose.yml
and un-comment all of the other services that you commented out in step 2docker-compose up -d
Hopefully that helps anyone that might need it!
If you only want to start 1 service of your entire compose file just use the name in the service section. No need to comment out everything else. For Lemmy it would be:
docker compose up -d postgres
This will only start the postgres container of this stack. Glad you found a way which worked for you ☺️
ahhhh yes, that makes perfect sense... thank you for pointing that out! Especially since I'm not good enough with
vi
to know how to bulk delete the first character in specific lines, I had to manually arrow and delete.