Lxc privileged container setup - nutthawit/alpine-dotfile GitHub Wiki
Install the LXC
sudo -s
pacman -S lxcEnable lxc-net.service
cat << 'EOF' > /etc/default/lxc-net
USE_LXC_BRIDGE="true"
LXC_BRIDGE="lxcbr0"
LXC_ADDR="10.0.3.1"
LXC_NETMASK="255.255.255.0"
LXC_NETWORK="10.0.3.0/24"
LXC_DHCP_RANGE="10.0.3.2,10.0.3.254"
LXC_DHCP_MAX="253"
EOF
systemctl disable --now firewalld.service
systemctl enable --now lxc-net.service