fix(deps): update github.com/containers/common digest to ea87b34

Signed-off-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
renovate[bot]
2023-05-04 13:32:22 +00:00
committed by GitHub
parent 377b834245
commit 334adac745
5 changed files with 16 additions and 4 deletions

View File

@@ -143,6 +143,12 @@ type ContainersConfig struct {
// Labeling to separate containers (SELinux)
EnableLabeling bool `toml:"label,omitempty"`
// EnableLabeledUsers indicates whether to enforce confined users with
// containers on SELinux systems. This option causes containers to
// maintain the current user and role field of the calling process.
// Otherwise containers run with user system_u, and the role system_r.
EnableLabeledUsers bool `toml:"label_users,omitempty"`
// Env is the environment variable list for container process.
Env []string `toml:"env,omitempty"`

View File

@@ -173,6 +173,12 @@ default_sysctls = [
#
#label = true
# label_users indicates whether to enforce confined users in containers on
# SELinux systems. This option causes containers to maintain the current user
# and role field of the calling process. By default SELinux containers run with
# the user system_u, and the role system_r.
#label_users = false
# Logging driver for the container. Available options: k8s-file and journald.
#
#log_driver = "k8s-file"