You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.4 KiB

  1. #https://github.com/containers/common/blob/main/pkg/config/containers.conf
  2. [containers]
  3. #annotations = []
  4. #apparmor_profile = "container-default"
  5. cgroupns = "private"
  6. cgroups = "enabled"
  7. netns = "private"
  8. #pidns = "private"
  9. #rootless_networking = "slirp4netns"
  10. #seccomp_profile = "/usr/share/containers/seccomp.json"
  11. #shm_size = "65536k"
  12. default_capabilities = [
  13. "CHOWN",
  14. "DAC_OVERRIDE",
  15. "FOWNER",
  16. "FSETID",
  17. "KILL",
  18. "NET_BIND_SERVICE",
  19. "SETFCAP",
  20. "SETGID",
  21. "SETPCAP",
  22. "SETUID",
  23. "SYS_CHROOT"
  24. ]
  25. default_sysctls = [
  26. "net.ipv4.ping_group_range=0 0",
  27. ]
  28. [network]
  29. cni_plugin_dirs = [
  30. "/usr/lib/cni"
  31. ]
  32. network_config_dir = "/etc/cni/net.d/"
  33. default_network = "podman"
  34. [engine]
  35. cgroup_manager = "cgroupfs"
  36. events_logger = "none"
  37. #image_default_transport = "docker://"
  38. #image_parallel_copies = 0
  39. #infra_command = "/pause"
  40. #infra_image = "k8s.gcr.io/pause:3.4.1"
  41. #lock_type** = "shm"
  42. #namespace = ""
  43. #network_cmd_path = ""
  44. runtime = "crun"
  45. # runtime = "runc"
  46. # runtime = "uxc"
  47. runtime_supports_json = ["crun", "runc", "kata", "uxc"]
  48. #runtime_supports_kvm = ["kata", "krun"]
  49. #runtime_supports_nocgroups = ["crun", "krun", "uxc"]
  50. #static_dir = "/var/lib/containers/storage/libpod"
  51. [engine.runtimes]
  52. crun = [
  53. "/usr/bin/crun",
  54. ]
  55. runc = [
  56. "/usr/sbin/runc",
  57. ]
  58. uxc = [
  59. "/sbin/uxc",
  60. ]
  61. [machine]
  62. #cpus = 1
  63. #disk_size = 10
  64. #image = "testing"
  65. #memory = 2048