aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/containers/storage.conf.tmpl
blob: c304b020d0af79092858d9e47f1e970229c7c761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- $machineRole := default "host" (index . "machineRole") -}}
{{- if eq $machineRole "vm" -}}
# Rootless podman storage configuration: VM ext4.

[storage]
driver = "overlay"

[storage.options.overlay]
{{- else -}}
# Rootless podman storage configuration: host btrfs.
# Changing storage drivers requires `podman system reset --force`.

[storage]
driver = "btrfs"
{{- end }}