github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/test/e2e/config/containers.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=500:500", 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=bar", 21 ] 22 23 # container engines use container separation using MAC(SELinux) labeling. 24 # Flag is ignored on label disabled systems. 25 # 26 label = true 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 = "201k" 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 "/dev/zero:/dev/notone:rwm", 42 ] 43 44 default_sysctls = [ 45 "net.ipv4.ping_group_range=0 1000", 46 ] 47 48 dns_searches=[ "foobar.com", ] 49 dns_servers=[ "1.2.3.4", ] 50 dns_options=[ "debug", ] 51 52 tz = "Pacific/Honolulu" 53 54 umask = "0002"