github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/test/e2e/config/containers-remote.conf (about)

     1  [containers]
     2  
     3  # A list of ulimits to be set in containers by default, specified as
     4  # "<ulimit name>=<soft limit>:<hard limit>", for example:
     5  # "nofile=1024:2048"
     6  # See setrlimit(2) for a list of resource names.
     7  # Any limit not specified here will be inherited from the process launching the
     8  # container engine.
     9  # Ulimits has limits for non privileged container engines.
    10  #
    11  default_ulimits = [
    12    "nofile=100:100",
    13  ]
    14  
    15  # Environment variable list for the conmon process; used for passing necessary
    16  # environment variables to conmon or the runtime.
    17  #
    18  env = [
    19      "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
    20      "foo=bar1",
    21  ]
    22  
    23  # container engines use container separation using MAC(SELinux) labeling.
    24  # Flag is ignored on label disabled systems.
    25  #
    26  label = false
    27  
    28  # Size of /dev/shm. Specified as <number><unit>.
    29  # Unit is optional, values:
    30  # b (bytes), k (kilobytes), m (megabytes), or g (gigabytes).
    31  # If the unit is omitted, the system uses bytes.
    32  #
    33  shm_size = "202k"
    34  
    35  # List of devices. Specified as
    36  # "<device-on-host>:<device-on-container>:<permissions>", for example:
    37  # "/dev/sdc:/dev/xvdc:rwm".
    38  # If it is empty or commented out, only the default devices will be used
    39  #
    40  devices = []
    41  
    42  default_sysctls = [
    43    "net.ipv4.ping_group_range=0 0",
    44  ]
    45  
    46  dns_searches=[ "barfoo.com", ]
    47  dns_servers=[ "4.3.2.1", ]
    48  
    49  tz = "America/New_York"
    50  
    51  umask = "0022"