5c9f13
# The containers configuration file specifies all of the available configuration
5c9f13
# command-line options/flags for container engine tools like Podman & Buildah,
5c9f13
# but in a TOML format that can be easily modified and versioned.
5c9f13
5c9f13
# Please refer to containers.conf(5) for details of all configuration options.
5c9f13
# Not all container engines implement all of the options.
5c9f13
# All of the options have hard coded defaults and these options will override
5c9f13
# the built in defaults. Users can then override these options via the command
5c9f13
# line. Container engines will read containers.conf files in up to three
5c9f13
# locations in the following order:
5c9f13
#  1. /usr/share/containers/containers.conf
5c9f13
#  2. /etc/containers/containers.conf
5c9f13
#  3. $HOME/.config/containers/containers.conf (Rootless containers ONLY)
5c9f13
#  Items specified in the latter containers.conf, if they exist, override the
5c9f13
# previous containers.conf settings, or the default settings.
5c9f13
5c9f13
[containers]
5c9f13
5c9f13
# List of annotation. Specified as
5c9f13
# "key = value"
5c9f13
# If it is empty or commented out, no annotations will be added
5c9f13
#
5c9f13
#annotations = []
5c9f13
5c9f13
# Used to change the name of the default AppArmor profile of container engine.
5c9f13
#
5c9f13
#apparmor_profile = "container-default"
5c9f13
5c9f13
# Default way to to create a cgroup namespace for the container
5c9f13
# Options are:
5c9f13
# `private` Create private Cgroup Namespace for the container.
5c9f13
# `host`    Share host Cgroup Namespace with the container.
5c9f13
#
5c9f13
#cgroupns = "private"
5c9f13
5c9f13
# Control container cgroup configuration
5c9f13
# Determines  whether  the  container will create CGroups.
5c9f13
# Options are:
5c9f13
# `enabled`   Enable cgroup support within container
5c9f13
# `disabled`  Disable cgroup support, will inherit cgroups from parent
5c9f13
# `no-conmon` Do not create a cgroup dedicated to conmon.
5c9f13
#
5c9f13
#cgroups = "enabled"
5c9f13
5c9f13
# List of default capabilities for containers. If it is empty or commented out,
5c9f13
# the default capabilities defined in the container engine will be added.
5c9f13
#
5c9f13
default_capabilities = [
5c9f13
    "NET_RAW",
5c9f13
  "CHOWN",
5c9f13
  "DAC_OVERRIDE",
5c9f13
  "FOWNER",
5c9f13
  "FSETID",
5c9f13
  "KILL",
5c9f13
  "NET_BIND_SERVICE",
5c9f13
  "SETFCAP",
5c9f13
  "SETGID",
5c9f13
  "SETPCAP",
5c9f13
  "SETUID",
5c9f13
  "SYS_CHROOT"
5c9f13
]
5c9f13
5c9f13
# A list of sysctls to be set in containers by default,
5c9f13
# specified as "name=value",
5c9f13
# for example:"net.ipv4.ping_group_range=0 0".
5c9f13
#
5c9f13
default_sysctls = [
5c9f13
  "net.ipv4.ping_group_range=0 0",
5c9f13
]
5c9f13
5c9f13
# A list of ulimits to be set in containers by default, specified as
5c9f13
# "<ulimit name>=<soft limit>:<hard limit>", for example:
5c9f13
# "nofile=1024:2048"
5c9f13
# See setrlimit(2) for a list of resource names.
5c9f13
# Any limit not specified here will be inherited from the process launching the
5c9f13
# container engine.
5c9f13
# Ulimits has limits for non privileged container engines.
5c9f13
#
5c9f13
#default_ulimits = [
5c9f13
#  "nofile=1280:2560",
5c9f13
#]
5c9f13
5c9f13
# List of devices. Specified as
5c9f13
# "<device-on-host>:<device-on-container>:<permissions>", for example:
5c9f13
# "/dev/sdc:/dev/xvdc:rwm".
5c9f13
# If it is empty or commented out, only the default devices will be used
5c9f13
#
5c9f13
#devices = []
5c9f13
5c9f13
# List of default DNS options to be added to /etc/resolv.conf inside of the container.
5c9f13
#
5c9f13
#dns_options = []
5c9f13
5c9f13
# List of default DNS search domains to be added to /etc/resolv.conf inside of the container.
5c9f13
#
5c9f13
#dns_searches = []
5c9f13
5c9f13
# Set default DNS servers.
5c9f13
# This option can be used to override the DNS configuration passed to the
5c9f13
# container. The special value "none" can be specified to disable creation of
5c9f13
# /etc/resolv.conf in the container.
5c9f13
# The /etc/resolv.conf file in the image will be used without changes.
5c9f13
#
5c9f13
#dns_servers = []
5c9f13
5c9f13
# Environment variable list for the conmon process; used for passing necessary
5c9f13
# environment variables to conmon or the runtime.
5c9f13
#
5c9f13
#env = [
5c9f13
#  "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
5c9f13
#  "TERM=xterm",
5c9f13
#]
5c9f13
5c9f13
# Pass all host environment variables into the container.
5c9f13
#
5c9f13
#env_host = false
5c9f13
5c9f13
# Default proxy environment variables passed into the container.
5c9f13
# The environment variables passed in include:
5c9f13
# http_proxy, https_proxy, ftp_proxy, no_proxy, and the upper case versions of
5c9f13
# these. This option is needed when host system uses a proxy but container
5c9f13
# should not use proxy. Proxy environment variables specified for the container
5c9f13
# in any other way will override the values passed from the host.
5c9f13
#
5c9f13
#http_proxy = true
5c9f13
5c9f13
# Run an init inside the container that forwards signals and reaps processes.
5c9f13
#
5c9f13
#init = false
5c9f13
5c9f13
# Container init binary, if init=true, this is the init binary to be used for containers.
5c9f13
#
5c9f13
#init_path = "/usr/libexec/podman/catatonit"
5c9f13
5c9f13
# Default way to to create an IPC namespace (POSIX SysV IPC) for the container
5c9f13
# Options are:
5c9f13
# `private` Create private IPC Namespace for the container.
5c9f13
# `host`    Share host IPC Namespace with the container.
5c9f13
#
5c9f13
#ipcns = "private"
5c9f13
5c9f13
# keyring tells the container engine whether to create
5c9f13
# a kernel keyring for use within the container.
5c9f13
#
5c9f13
#keyring = true
5c9f13
5c9f13
# label tells the container engine whether to use container separation using
5c9f13
# MAC(SELinux) labeling or not.
5c9f13
# The label flag is ignored on label disabled systems.
5c9f13
#
5c9f13
#label = true
5c9f13
5c9f13
# Logging driver for the container. Available options: k8s-file and journald.
5c9f13
#
5c9f13
#log_driver = "k8s-file"
5c9f13
log_driver = "k8s-file"
5c9f13
5c9f13
# Maximum size allowed for the container log file. Negative numbers indicate
5c9f13
# that no size limit is imposed. If positive, it must be >= 8192 to match or
5c9f13
# exceed conmon's read buffer. The file is truncated and re-opened so the
5c9f13
# limit is never exceeded.
5c9f13
#
5c9f13
#log_size_max = -1
5c9f13
5c9f13
# Specifies default format tag for container log messages.
5c9f13
# This is useful for creating a specific tag for container log messages.
5c9f13
# Containers logs default to truncated container ID as a tag.
5c9f13
#
5c9f13
#log_tag = ""
5c9f13
5c9f13
# Default way to to create a Network namespace for the container
5c9f13
# Options are:
5c9f13
# `private` Create private Network Namespace for the container.
5c9f13
# `host`    Share host Network Namespace with the container.
5c9f13
# `none`    Containers do not use the network
5c9f13
#
5c9f13
#netns = "private"
5c9f13
5c9f13
# Create /etc/hosts for the container.  By default, container engine manage
5c9f13
# /etc/hosts, automatically adding  the container's  own  IP  address.
5c9f13
#
5c9f13
#no_hosts = false
5c9f13
5c9f13
# Default way to to create a PID namespace for the container
5c9f13
# Options are:
5c9f13
# `private` Create private PID Namespace for the container.
5c9f13
# `host`    Share host PID Namespace with the container.
5c9f13
#
5c9f13
#pidns = "private"
5c9f13
5c9f13
# Maximum number of processes allowed in a container.
5c9f13
#
5c9f13
#pids_limit = 2048
5c9f13
5c9f13
# Copy the content from the underlying image into the newly created volume
5c9f13
# when the container is created instead of when it is started. If false,
5c9f13
# the container engine will not copy the content until the container is started.
5c9f13
# Setting it to true may have negative performance implications.
5c9f13
#
5c9f13
#prepare_volume_on_create = false
5c9f13
5c9f13
# Path to the seccomp.json profile which is used as the default seccomp profile
5c9f13
# for the runtime.
5c9f13
#
5c9f13
#seccomp_profile = "/usr/share/containers/seccomp.json"
5c9f13
5c9f13
# Size of /dev/shm. Specified as <number><unit>.
5c9f13
# Unit is optional, values:
5c9f13
# b (bytes), k (kilobytes), m (megabytes), or g (gigabytes).
5c9f13
# If the unit is omitted, the system uses bytes.
5c9f13
#
5c9f13
#shm_size = "65536k"
5c9f13
5c9f13
# Set timezone in container. Takes IANA timezones as well as "local",
5c9f13
# which sets the timezone in the container to match the host machine.
5c9f13
#
5c9f13
#tz = ""
5c9f13
5c9f13
# Set umask inside the container
5c9f13
#
5c9f13
#umask = "0022"
5c9f13
5c9f13
# Default way to to create a User namespace for the container
5c9f13
# Options are:
5c9f13
# `auto`        Create unique User Namespace for the container.
5c9f13
# `host`    Share host User Namespace with the container.
5c9f13
#
5c9f13
#userns = "host"
5c9f13
5c9f13
# Number of UIDs to allocate for the automatic container creation.
5c9f13
# UIDs are allocated from the "container" UIDs listed in
5c9f13
# /etc/subuid & /etc/subgid
5c9f13
#
5c9f13
#userns_size = 65536
5c9f13
5c9f13
# Default way to to create a UTS namespace for the container
5c9f13
# Options are:
5c9f13
# `private`        Create private UTS Namespace for the container.
5c9f13
# `host`    Share host UTS Namespace with the container.
5c9f13
#
5c9f13
#utsns = "private"
5c9f13
5c9f13
# List of volumes. Specified as
5c9f13
# "<directory-on-host>:<directory-in-container>:<options>", for example:
5c9f13
# "/db:/var/lib/db:ro".
5c9f13
# If it is empty or commented out, no volumes will be added
5c9f13
#
5c9f13
#volumes = []
5c9f13
5c9f13
[secrets]
5c9f13
#driver = "file"
5c9f13
5c9f13
[secrets.opts]
5c9f13
#root = "/example/directory"
5c9f13
5c9f13
[network]
5c9f13
5c9f13
# Network backend determines what network driver will be used to set up and tear down container networks.
5c9f13
# Valid values are "cni" and "netavark".
5c9f13
# The default value is empty which means that it will automatically choose CNI or netavark. If there are
5c9f13
# already containers/images or CNI networks preset it will choose CNI.
5c9f13
#
5c9f13
# Before changing this value all containers must be stopped otherwise it is likely that
5c9f13
# iptables rules and network interfaces might leak on the host. A reboot will fix this.
5c9f13
#
5c9f13
#network_backend = ""
5c9f13
network_backend = "cni"
5c9f13
5c9f13
# Path to directory where CNI plugin binaries are located.
5c9f13
#
5c9f13
#cni_plugin_dirs = [
5c9f13
#  "/usr/local/libexec/cni",
5c9f13
#  "/usr/libexec/cni",
5c9f13
#  "/usr/local/lib/cni",
5c9f13
#  "/usr/lib/cni",
5c9f13
#  "/opt/cni/bin",
5c9f13
#]
5c9f13
5c9f13
# The network name of the default network to attach pods to.
5c9f13
#
5c9f13
#default_network = "podman"
5c9f13
5c9f13
# The default subnet for the default network given in default_network.
5c9f13
# If a network with that name does not exist, a new network using that name and
5c9f13
# this subnet will be created.
5c9f13
# Must be a valid IPv4 CIDR prefix.
5c9f13
#
5c9f13
#default_subnet = "10.88.0.0/16"
5c9f13
5c9f13
# Path to the directory where network configuration files are located.
5c9f13
# For the CNI backend the default is "/etc/cni/net.d" as root
5c9f13
# and "$HOME/.config/cni/net.d" as rootless.
5c9f13
# For the netavark backend "/etc/containers/networks" is used as root
5c9f13
# and "$graphroot/networks" as rootless.
5c9f13
#
5c9f13
#network_config_dir = "/etc/cni/net.d/"
5c9f13
5c9f13
[engine]
5c9f13
# Index to the active service
5c9f13
#
5c9f13
#active_service = production
5c9f13
5c9f13
# The compression format to use when pushing an image.
5c9f13
# Valid options are: `gzip`, `zstd` and `zstd:chunked`.
5c9f13
#
5c9f13
#compression_format = "gzip"
5c9f13
5c9f13
5c9f13
# Cgroup management implementation used for the runtime.
5c9f13
# Valid options "systemd" or "cgroupfs"
5c9f13
#
5c9f13
#cgroup_manager = "systemd"
5c9f13
5c9f13
# Environment variables to pass into conmon
5c9f13
#
5c9f13
#conmon_env_vars = [
5c9f13
#  "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
5c9f13
#]
5c9f13
5c9f13
# Paths to look for the conmon container manager binary
5c9f13
#
5c9f13
#conmon_path = [
5c9f13
#  "/usr/libexec/podman/conmon",
5c9f13
#  "/usr/local/libexec/podman/conmon",
5c9f13
#  "/usr/local/lib/podman/conmon",
5c9f13
#  "/usr/bin/conmon",
5c9f13
#  "/usr/sbin/conmon",
5c9f13
#  "/usr/local/bin/conmon",
5c9f13
#  "/usr/local/sbin/conmon"
5c9f13
#]
5c9f13
5c9f13
# Enforces using docker.io for completing short names in Podman's compatibility
5c9f13
# REST API. Note that this will ignore unqualified-search-registries and
5c9f13
# short-name aliases defined in containers-registries.conf(5).
5c9f13
#compat_api_enforce_docker_hub = true
5c9f13
5c9f13
# Specify the keys sequence used to detach a container.
5c9f13
# Format is a single character [a-Z] or a comma separated sequence of
5c9f13
# `ctrl-<value>`, where `<value>` is one of:
5c9f13
# `a-z`, `@`, `^`, `[`, `\`, `]`, `^` or `_`
5c9f13
#
5c9f13
#detach_keys = "ctrl-p,ctrl-q"
5c9f13
5c9f13
# Determines whether engine will reserve ports on the host when they are
5c9f13
# forwarded to containers. When enabled, when ports are forwarded to containers,
5c9f13
# ports are held open by as long as the container is running, ensuring that
5c9f13
# they cannot be reused by other programs on the host. However, this can cause
5c9f13
# significant memory usage if a container has many ports forwarded to it.
5c9f13
# Disabling this can save memory.
5c9f13
#
5c9f13
#enable_port_reservation = true
5c9f13
5c9f13
# Environment variables to be used when running the container engine (e.g., Podman, Buildah).
5c9f13
# For example "http_proxy=internal.proxy.company.com".
5c9f13
# Note these environment variables will not be used within the container.
5c9f13
# Set the env section under [containers] table, if you want to set environment variables for the container.
5c9f13
#
5c9f13
#env = []
5c9f13
5c9f13
# Define where event logs will be stored, when events_logger is "file".
5c9f13
#events_logfile_path=""
5c9f13
5c9f13
# Selects which logging mechanism to use for container engine events.
5c9f13
# Valid values are `journald`, `file` and `none`.
5c9f13
#
5c9f13
#events_logger = "journald"
5c9f13
events_logger = "file"
5c9f13
5c9f13
# A is a list of directories which are used to search for helper binaries.
5c9f13
#
5c9f13
#helper_binaries_dir = [
5c9f13
#  "/usr/local/libexec/podman",
5c9f13
#  "/usr/local/lib/podman",
5c9f13
#  "/usr/libexec/podman",
5c9f13
#  "/usr/lib/podman",
5c9f13
#]
5c9f13
5c9f13
# Path to OCI hooks directories for automatically executed hooks.
5c9f13
#
5c9f13
#hooks_dir = [
5c9f13
#  "/usr/share/containers/oci/hooks.d",
5c9f13
#]
5c9f13
5c9f13
# Manifest Type (oci, v2s2, or v2s1) to use when pulling, pushing, building
5c9f13
# container images. By default image pulled and pushed match the format of the
5c9f13
# source image. Building/committing defaults to OCI.
5c9f13
#
5c9f13
#image_default_format = ""
5c9f13
5c9f13
# Default transport method for pulling and pushing for images
5c9f13
#
5c9f13
#image_default_transport = "docker://"
5c9f13
5c9f13
# Maximum number of image layers to be copied (pulled/pushed) simultaneously.
5c9f13
# Not setting this field, or setting it to zero, will fall back to containers/image defaults.
5c9f13
#
5c9f13
#image_parallel_copies = 0
5c9f13
5c9f13
# Default command to run the infra container
5c9f13
#
5c9f13
#infra_command = "/pause"
5c9f13
5c9f13
# Infra (pause) container image name for pod infra containers.  When running a
5c9f13
# pod, we start a `pause` process in a container to hold open the namespaces
5c9f13
# associated with the  pod.  This container does nothing other then sleep,
5c9f13
# reserving the pods resources for the lifetime of the pod. By default container
5c9f13
# engines run a builtin container using the pause executable. If you want override
5c9f13
# specify an image to pull.
5c9f13
#
5c9f13
#infra_image = ""
5c9f13
5c9f13
# Specify the locking mechanism to use; valid values are "shm" and "file".
5c9f13
# Change the default only if you are sure of what you are doing, in general
5c9f13
# "file" is useful only on platforms where cgo is not available for using the
5c9f13
# faster "shm" lock type. You may need to run "podman system renumber" after
5c9f13
# you change the lock type.
5c9f13
#
5c9f13
#lock_type** = "shm"
5c9f13
5c9f13
# Indicates if Podman is running inside a VM via Podman Machine.
5c9f13
# Podman uses this value to do extra setup around networking from the
5c9f13
# container inside the VM to to host.
5c9f13
#
5c9f13
#machine_enabled = false
5c9f13
5c9f13
# MultiImageArchive - if true, the container engine allows for storing archives
5c9f13
# (e.g., of the docker-archive transport) with multiple images.  By default,
5c9f13
# Podman creates single-image archives.
5c9f13
#
5c9f13
#multi_image_archive = "false"
5c9f13
5c9f13
# Default engine namespace
5c9f13
# If engine is joined to a namespace, it will see only containers and pods
5c9f13
# that were created in the same namespace, and will create new containers and
5c9f13
# pods in that namespace.
5c9f13
# The default namespace is "", which corresponds to no namespace. When no
5c9f13
# namespace is set, all containers and pods are visible.
5c9f13
#
5c9f13
#namespace = ""
5c9f13
5c9f13
# Path to the slirp4netns binary
5c9f13
#
5c9f13
#network_cmd_path = ""
5c9f13
5c9f13
# Default options to pass to the slirp4netns binary.
5c9f13
# For example "allow_host_loopback=true"
5c9f13
#
5c9f13
#network_cmd_options = ["enable_ipv6=true",]
5c9f13
5c9f13
# Whether to use chroot instead of pivot_root in the runtime
5c9f13
#
5c9f13
#no_pivot_root = false
5c9f13
5c9f13
# Number of locks available for containers and pods.
5c9f13
# If this is changed, a lock renumber must be performed (e.g. with the
5c9f13
# 'podman system renumber' command).
5c9f13
#
5c9f13
#num_locks = 2048
5c9f13
5c9f13
# Whether to pull new image before running a container
5c9f13
#
5c9f13
#pull_policy = "missing"
5c9f13
5c9f13
# Indicates whether the application should be running in remote mode. This flag modifies the
5c9f13
# --remote option on container engines. Setting the flag to true will default
5c9f13
# `podman --remote=true` for access to the remote Podman service.
5c9f13
#
5c9f13
#remote = false
5c9f13
5c9f13
# Default OCI runtime
5c9f13
#
5c9f13
#runtime = "crun"
5c9f13
runtime = "runc"
5c9f13
5c9f13
# List of the OCI runtimes that support --format=json. When json is supported
5c9f13
# engine will use it for reporting nicer errors.
5c9f13
#
5c9f13
#runtime_supports_json = ["crun", "runc", "kata", "runsc", "krun"]
5c9f13
5c9f13
# List of the OCI runtimes that supports running containers with KVM Separation.
5c9f13
#
5c9f13
#runtime_supports_kvm = ["kata", "krun"]
5c9f13
5c9f13
# List of the OCI runtimes that supports running containers without cgroups.
5c9f13
#
5c9f13
#runtime_supports_nocgroups = ["crun", "krun"]
5c9f13
5c9f13
# Default location for storing temporary container image content. Can be overridden with the TMPDIR environment
5c9f13
# variable. If you specify "storage", then the location of the
5c9f13
# container/storage tmp directory will be used.
5c9f13
# image_copy_tmp_dir="/var/tmp"
5c9f13
5c9f13
# Number of seconds to wait without a connection
5c9f13
# before the `podman system service` times out and exits
5c9f13
#
5c9f13
#service_timeout = 5
5c9f13
5c9f13
# Directory for persistent engine files (database, etc)
5c9f13
# By default, this will be configured relative to where the containers/storage
5c9f13
# stores containers
5c9f13
# Uncomment to change location from this default
5c9f13
#
5c9f13
#static_dir = "/var/lib/containers/storage/libpod"
5c9f13
5c9f13
# Number of seconds to wait for container to exit before sending kill signal.
5c9f13
#
5c9f13
#stop_timeout = 10
5c9f13
5c9f13
# map of service destinations
5c9f13
#
5c9f13
#[service_destinations]
5c9f13
#  [service_destinations.production]
5c9f13
#     URI to access the Podman service
5c9f13
#     Examples:
5c9f13
#       rootless "unix://run/user/$UID/podman/podman.sock" (Default)
5c9f13
#       rootfull "unix://run/podman/podman.sock (Default)
5c9f13
#       remote rootless ssh://engineering.lab.company.com/run/user/1000/podman/podman.sock
5c9f13
#       remote rootfull ssh://root@10.10.1.136:22/run/podman/podman.sock
5c9f13
#
5c9f13
#    uri = "ssh://user@production.example.com/run/user/1001/podman/podman.sock"
5c9f13
#    Path to file containing ssh identity key
5c9f13
#    identity = "~/.ssh/id_rsa"
5c9f13
5c9f13
# Directory for temporary files. Must be tmpfs (wiped after reboot)
5c9f13
#
5c9f13
#tmp_dir = "/run/libpod"
5c9f13
5c9f13
# Directory for libpod named volumes.
5c9f13
# By default, this will be configured relative to where containers/storage
5c9f13
# stores containers.
5c9f13
# Uncomment to change location from this default.
5c9f13
#
5c9f13
#volume_path = "/var/lib/containers/storage/volumes"
5c9f13
5c9f13
# Paths to look for a valid OCI runtime (crun, runc, kata, runsc, krun, etc)
5c9f13
[engine.runtimes]
5c9f13
#crun = [
5c9f13
#  "/usr/bin/crun",
5c9f13
#  "/usr/sbin/crun",
5c9f13
#  "/usr/local/bin/crun",
5c9f13
#  "/usr/local/sbin/crun",
5c9f13
#  "/sbin/crun",
5c9f13
#  "/bin/crun",
5c9f13
#  "/run/current-system/sw/bin/crun",
5c9f13
#]
5c9f13
5c9f13
#kata = [
5c9f13
#  "/usr/bin/kata-runtime",
5c9f13
#  "/usr/sbin/kata-runtime",
5c9f13
#  "/usr/local/bin/kata-runtime",
5c9f13
#  "/usr/local/sbin/kata-runtime",
5c9f13
#  "/sbin/kata-runtime",
5c9f13
#  "/bin/kata-runtime",
5c9f13
#  "/usr/bin/kata-qemu",
5c9f13
#  "/usr/bin/kata-fc",
5c9f13
#]
5c9f13
5c9f13
#runc = [
5c9f13
#  "/usr/bin/runc",
5c9f13
#  "/usr/sbin/runc",
5c9f13
#  "/usr/local/bin/runc",
5c9f13
#  "/usr/local/sbin/runc",
5c9f13
#  "/sbin/runc",
5c9f13
#  "/bin/runc",
5c9f13
#  "/usr/lib/cri-o-runc/sbin/runc",
5c9f13
#]
5c9f13
5c9f13
#runsc = [
5c9f13
#  "/usr/bin/runsc",
5c9f13
#  "/usr/sbin/runsc",
5c9f13
#  "/usr/local/bin/runsc",
5c9f13
#  "/usr/local/sbin/runsc",
5c9f13
#  "/bin/runsc",
5c9f13
#  "/sbin/runsc",
5c9f13
#  "/run/current-system/sw/bin/runsc",
5c9f13
#]
5c9f13
5c9f13
#krun = [
5c9f13
#  "/usr/bin/krun",
5c9f13
#  "/usr/local/bin/krun",
5c9f13
#]
5c9f13
5c9f13
[engine.volume_plugins]
5c9f13
#testplugin = "/run/podman/plugins/test.sock"
5c9f13
5c9f13
[machine]
5c9f13
# Number of CPU's a machine is created with.
5c9f13
#
5c9f13
#cpus=1
5c9f13
5c9f13
# The size of the disk in GB created when init-ing a podman-machine VM.
5c9f13
#
5c9f13
#disk_size=10
5c9f13
5c9f13
# The image used when creating a podman-machine VM.
5c9f13
#
5c9f13
#image = "testing"
5c9f13
5c9f13
# Memory in MB a machine is created with.
5c9f13
#
5c9f13
#memory=2048
5c9f13
5c9f13
# The username to use and create on the podman machine OS for rootless
5c9f13
# container access.
5c9f13
#
5c9f13
#user = "core"
5c9f13
5c9f13
# The [machine] table MUST be the last entry in this file.
5c9f13
# (Unless another table is added)
5c9f13
# TOML does not provide a way to end a table other than a further table being
5c9f13
# defined, so every key hereafter will be part of [machine] and not the
5c9f13
# main config.