2021-11-24 02:30:01 +00:00
|
|
|
= Docker =
|
|
|
|
|
|
|
|
Docker is a tool for containerizing (basically VM'ing) programs
|
|
|
|
|
|
|
|
== Install ==
|
|
|
|
|
|
|
|
On gentoo install docker as directed, and enable all of the required flags on
|
|
|
|
the wiki (they change with different versions)
|
|
|
|
|
|
|
|
== Setup ==
|
|
|
|
|
|
|
|
the `docker` command is all thats needed to run a container.
|
2022-01-18 22:15:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
== Useful commands ==
|
|
|
|
|
|
|
|
=== Get a shell on a container ===
|
|
|
|
|
|
|
|
`docker exec -it <CONTAINER_ID> /bin/bash`
|