From 7966e8931bf282b3fc0eef0b7153fba7b789dc94 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 13 Feb 2024 18:06:41 -0500 Subject: [PATCH] Add `VOLUME /var` into container config by default This meshes with in that our container image now behaves by default similarly to how the host works at runtime. --- centos-bootc-config.json | 3 +++ fedora-bootc-config.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/centos-bootc-config.json b/centos-bootc-config.json index 53e00fd..a0ab0f9 100644 --- a/centos-bootc-config.json +++ b/centos-bootc-config.json @@ -4,5 +4,8 @@ "redhat.compose-id": "CentOS-Stream-9-20240212.d.0", "redhat.id": "centos", "redhat.version-id": "9" + }, + "Volumes": { + "/var": {} } } diff --git a/fedora-bootc-config.json b/fedora-bootc-config.json index 0d090a3..3464776 100644 --- a/fedora-bootc-config.json +++ b/fedora-bootc-config.json @@ -4,5 +4,8 @@ "redhat.compose-id": "Fedora-ELN-20240213.3", "redhat.id": "fedora", "redhat.version-id": "ELN" + }, + "Volumes": { + "/var": {} } }