Compare commits

...

2 Commits

Author SHA1 Message Date
818f22679d documentation review 2022-09-30 23:25:43 +01:00
d828fed74b add documentation for docker 2022-09-30 23:23:09 +01:00

View File

@@ -0,0 +1,23 @@
# Running Docker
on a lxc container
## setup lxc container for docker
### Config
- security.nesting: "true"
```bash
lxc config edit ${CONTAINER_NAME}
```
### setup ubuntu container
```bash
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
```