this post was submitted on 26 Sep 2023
37 points (93.0% liked)

Selfhosted

39222 readers
387 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Hi all!

I've been using RancherOS for years as the minimal OS to host all of my containers and it's been working great. Until today.

I updated Redis to its latest version, and got some errors. After some investigation I found that in needs Docker 20 or higher to run. RancherOS has been abandoned, and the latest version you can install is 19.

Do you fine folks know something similar to RancherOS? Thanks!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 11 months ago* (last edited 11 months ago) (1 children)

I am not using it with immutable config, so the only thing flatcar is doing is it has an A and a B partition for /usr that it switches between on updates (such that it can always rollback to the last working system).

I only used ignition for the initial setup, after that I just ssh in to the machine and change systemd services via /etc/systemd/system (such as added new mounts, using systemd unit's for running docker containers etc.)

Adding a user is initially done: https://www.flatcar.org/docs/latest/setup/customization/adding-users/

The idea is that all software you need to run except for systemd and some utilities (more or less what is in busybox) are run in containers, which i think was the same deal with RancerOS.

[–] [email protected] 1 points 11 months ago

Gotcha. Thanks!