mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
feat: podman notes
This commit is contained in:
@@ -6,11 +6,17 @@
|
||||
1. [Daemon configuration](#daemon-configuration)
|
||||
1. [Containers configuration](#containers-configuration)
|
||||
1. [Gotchas](#gotchas)
|
||||
1. [Further readings](#further-readings)
|
||||
1. [Sources](#sources)
|
||||
|
||||
## TL;DR
|
||||
|
||||
```sh
|
||||
# Install
|
||||
brew install --cask 'docker'
|
||||
sudo zypper install 'docker'
|
||||
|
||||
|
||||
# Show locally available images.
|
||||
docker images -a
|
||||
|
||||
@@ -161,6 +167,11 @@ Those files come from the volume the docker container is using for its root, and
|
||||
This is due to the fact that the Docker daemon on Mac is running in a virtual machine, and not natively; hence, ports are exposed on the VM and not of the host running it.<br/>
|
||||
One way around it is port forwarding to localhost (the `-p` or `-P` options).
|
||||
|
||||
## Further readings
|
||||
|
||||
- [GitHub] page
|
||||
- [Podman]
|
||||
|
||||
## Sources
|
||||
|
||||
- [Arch Linux Wiki]
|
||||
@@ -172,6 +183,9 @@ Those files come from the volume the docker container is using for its root, and
|
||||
References
|
||||
-->
|
||||
|
||||
<!-- Knowledge base -->
|
||||
[podman]: podman.placeholder
|
||||
|
||||
<!-- Others -->
|
||||
[arch linux wiki]: https://wiki.archlinux.org/index.php/Docker
|
||||
[cheatsheet]: https://collabnix.com/docker-cheatsheet/
|
||||
|
||||
32
knowledge base/podman.placeholder
Normal file
32
knowledge base/podman.placeholder
Normal file
@@ -0,0 +1,32 @@
|
||||
# Podman
|
||||
|
||||
Daemonless container engine for Linux.<br/>
|
||||
Intended to be a drop-in replacement for [Docker].
|
||||
|
||||
1. [TL;DR](#tldr)
|
||||
1. [Further readings](#further-readings)
|
||||
|
||||
## TL;DR
|
||||
|
||||
```sh
|
||||
# Install Podman.
|
||||
sudo apt install 'podman'
|
||||
sudo dnf install 'podman'
|
||||
sudo pacman -S 'podman'
|
||||
sudo zypper install 'podman'
|
||||
```
|
||||
|
||||
## Further readings
|
||||
|
||||
- [Website]
|
||||
- [Docker]
|
||||
|
||||
<!--
|
||||
References
|
||||
-->
|
||||
|
||||
<!-- Upstream -->
|
||||
[website]: https://podman.io/
|
||||
|
||||
<!-- Knowledge base -->
|
||||
[docker]: docker.md
|
||||
@@ -56,4 +56,4 @@ toolbox rmi -af
|
||||
[github]: https://github.com/containers/toolbox
|
||||
|
||||
<!-- Knowledge base -->
|
||||
[podman]: podman.md
|
||||
[podman]: podman.placeholder
|
||||
|
||||
Reference in New Issue
Block a user