Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
work:docker [2021/12/08 22:13] – magsilva | work:docker [2021/12/09 01:51] (current) – magsilva | ||
---|---|---|---|
Line 2: | Line 2: | ||
I use Fedora as baseline, thus all the instructions consider it :-) | I use Fedora as baseline, thus all the instructions consider it :-) | ||
+ | |||
+ | ===== Installation ===== | ||
Fedora provides Docker support using Podman or Docker CE. We will stick with Docker CE for now, as provided by package '' | Fedora provides Docker support using Podman or Docker CE. We will stick with Docker CE for now, as provided by package '' | ||
Line 17: | Line 19: | ||
- '' | - '' | ||
- | If you want to run docker inside docker (nested docker instances), you may run the nested docker instance using the default Unix socket docker.sock as a volume. For example: | + | If you want to run docker inside docker (nested docker instances), you may run the nested docker instance using the default Unix socket docker.sock as a volume. The limitation in using '' |
- '' | - '' | ||
+ | An alternative to run nested docker instances is to use '' | ||
+ | - '' | ||
+ | |||
+ | ==== Build new image ==== | ||
+ | - Create the file with the instructions to the new image to be build: '' | ||
+ | - Run '' | ||
+ | |||
+ | ==== Debugging running containers ==== | ||
+ | - Find the running container id. You may use the command '' | ||
+ | - Enter into the running container: '' | ||
+ | ==== References ==== | ||
+ | * https:// |