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
Not a bug but ambiguous: including a commented value for hooks_dir in containers.conf seems to imply it is the default.
It is however not the case with FreeBSD where, unless hooks_dir is uncommented and explicitly set, the project default is used /usr/share/containers/oci/hooks.d
with
# Path to OCI hooks directories for automatically executed hooks.
#
#hooks_dir = [
# "/usr/local/share/containers/oci/hooks.d",
#]
podman run --debug (...) results in
DEBU[0000] reading hooks from /usr/share/containers/oci/hooks.d
Configuration is honoured correctly: with
# Path to OCI hooks directories for automatically executed hooks.
#
hooks_dir = [
"/usr/local/share/containers/oci/hooks.d",
]
podman run --debug (...) results in
DEBU[0000] reading hooks from /usr/local/share/containers/oci/hooks.d
The text was updated successfully, but these errors were encountered:
Not a bug but ambiguous: including a commented value for
hooks_dir
in containers.conf seems to imply it is the default.It is however not the case with FreeBSD where, unless
hooks_dir
is uncommented and explicitly set, the project default is used/usr/share/containers/oci/hooks.d
with
podman run --debug (...)
results inConfiguration is honoured correctly: with
podman run --debug (...)
results inThe text was updated successfully, but these errors were encountered: