Advertisement
Guest User

Untitled

a guest
May 25th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. config.vm.provider :lxc do |lxc|
  2. lxc.container_name = "test001"
  3. lxc.customize "cgroup.memory.limit_in_bytes", "2024M"
  4. lxc.customize "network.type", "veth"
  5. lxc.customize "network.flags", "up"
  6. lxc.customize "network.link", "lxcbr0"
  7. lxc.customize "network.ipv4", "10.0.4.20/24"
  8. lxc.customize "network.ipv4.gateway", "10.0.4.1"
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement