You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -76,6 +76,31 @@ invocation used by bootc. However, many properties used for container registry i
76
76
can be configured via [containers-registries.conf](https://github.com/containers/image/blob/main/docs/containers-registries.conf.5.md)
77
77
and apply to all commands operating on that image.
78
78
79
+
It is not currently supported in general to launch "rootless" containers from system-owned
80
+
image stores in general, whether from `/var/lib/containers` or the `/usr/lib/bootc/storage`.
81
+
There is no integration between bootc and "rootless" storage today, and none is planned.
82
+
Instead, it's recommended to ensure that your "system" or "rootful" containers drop
83
+
privileges. More in e.g. <https://github.com/containers/podman/discussions/13728>.
84
+
79
85
### Distro/OS installer support
80
86
81
87
At the current time, logically bound images are [not supported by Anaconda](https://github.com/rhinstaller/anaconda/discussions/5197).
88
+
89
+
## Comparison with default podman systemd units
90
+
91
+
In the comparison below, the term "floating" will be used for non-logically bound images. These images are often fetched by e.g. [podman-systemd](https://docs.podman.io/en/latest/markdown/podman-systemd.unit.5.html) and may be upgraded, added or removed independently of the host upgrade lifecycle.
92
+
93
+
### Lifecycle
94
+
95
+
-**Floating image:** The images are downloaded by the machine the first time it starts (requiring networking typically). Tools such as `podman auto-update` can be used to upgrade them independently of the host.
96
+
-**Logically bound image:** The images are referenced by the bootable container and are ensured to be available when the (bootc based) server starts. The image is always upgraded via `bootc upgrade` and appears read-only to other processes (e.g. `podman`).
97
+
98
+
### Upgrades, rollbacks and garbage collection
99
+
100
+
-**Floating image:** Managed by the user (`podman auto-update`, `podman image prune`). This can be triggered at anytime independent of the host upgrades or rollbacks, and host upgrades/rollbacks do not affect the set of images.
101
+
-**Logically bound image:** Managed exclusively by `bootc` during upgrades. The logically bound images corresponding to rollback deployments will also be retained. `bootc` performs garbage collection of unused images.
102
+
103
+
### "rootless" container image
104
+
105
+
-**Floating image:** Supported.
106
+
-**Logically bound image:** Not supported (`bootc` cannot be invoked as non-root). Instead, it's recommended to just drop most privileges for launched logically bound containers.
0 commit comments