this post was submitted on 30 Jul 2023
1103 points (100.0% liked)
Lemmy.World Announcements
29034 readers
3 users here now
This Community is intended for posts about the Lemmy.world server by the admins.
Follow us for server news ๐
Outages ๐ฅ
https://status.lemmy.world
For support with issues at Lemmy.world, go to the Lemmy.world Support community.
Support e-mail
Any support requests are best sent to info@lemmy.world e-mail.
Report contact
- DM https://lemmy.world/u/lwreport
- Email report@lemmy.world (PGP Supported)
Donations ๐
If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.
If you can, please use / switch to Ko-Fi, it has the lowest fees for us
Join the team
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Maintenance in regards to updates is not an issue. All the extra frontends we added run in docker and are automatically updated twice a day to make sure we are always running the latest stable versions. All apps are using the Lemmy api's just like the 3rd party apps and should anything break we have ways to contact the developers.
How did you set them up to automatically update? Have you done a write up on how you set these up? Would be great for other admins to be able to do the same
We use docker compose in scripts and crontabs
/scripts/update-alexandrite.sh:
Then use crontab -e and add this line:
00 05,00 * * * bash /scripts/update-alexandrite.sh
Are you concerned at all with auto updating containers that some updates can break stuff?
Iโve had issues with watchtower and auto updating containers in the past breaking config files and stopping containers.
Changing the update rate in cron can help offset any broken / vulnerable updates that get pushed.