basic docker

This commit is contained in:
Malin Freeborn 2021-11-24 01:57:41 +01:00
parent c5540ccd95
commit 2ea4f2fd52
1 changed files with 25 additions and 0 deletions

25
virtualization/docker.md Normal file
View File

@ -0,0 +1,25 @@
> sudo pacman -S docker
> sudo usermod -aG docker $USER
> sudo systemctl start docker
You need to either log out and back in again to be in the docker group, or run everything as root.
> # docker info
This should show you things are working.
Search for a distro you want
> docker search debian
If you get a hit, pull it.
> docker pull debian
Then run a live image:
> docker run -it debian