350 B
350 B
Running Docker
on a lxc container
setup lxc container for docker
Config
- security.nesting: "true"
lxc config edit ${CONTAINER_NAME}
setup ubuntu container
apt-get install --yes fuse-overlayfs
cd ~/
curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh
docker run hello-world
docker info