From c46dcfcaf76b67eb8d4678f833e6d81295eff7bc Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Thu, 26 May 2022 20:27:23 +0200 Subject: [PATCH] Auto saved by Logseq --- ...iacomo sansoni.md.2022-05-26T18_26_34.996Z | 4 ++++ ...iacomo sansoni.md.2022-05-26T18_26_38.627Z | 4 ++++ ...iacomo sansoni.md.2022-05-26T18_26_49.205Z | 5 ++++ logseq/bak/podman.md.2022-05-26T18_27_02.884Z | 24 +++++++++++++++++++ podman.md | 4 ++++ 5 files changed, 41 insertions(+) create mode 100644 logseq/bak/giacomo sansoni.md.2022-05-26T18_26_34.996Z create mode 100644 logseq/bak/giacomo sansoni.md.2022-05-26T18_26_38.627Z create mode 100644 logseq/bak/giacomo sansoni.md.2022-05-26T18_26_49.205Z create mode 100644 logseq/bak/podman.md.2022-05-26T18_27_02.884Z diff --git a/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_34.996Z b/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_34.996Z new file mode 100644 index 000000000..fb68a5126 --- /dev/null +++ b/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_34.996Z @@ -0,0 +1,4 @@ +- a [[person]]. + - [[italian]] in [[social coop]]. + - [[friend]] + - [[editions coop]] diff --git a/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_38.627Z b/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_38.627Z new file mode 100644 index 000000000..524572272 --- /dev/null +++ b/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_38.627Z @@ -0,0 +1,4 @@ +- a [[person]]. + - [[italian]] in [[social coop]]. + - [[friend]] + - [[editing coop]] diff --git a/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_49.205Z b/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_49.205Z new file mode 100644 index 000000000..11ff5adff --- /dev/null +++ b/logseq/bak/giacomo sansoni.md.2022-05-26T18_26_49.205Z @@ -0,0 +1,5 @@ +- a [[person]]. + - [[italian]] in [[social coop]]. + - [[friend]] + - [[editing coop]] + - [[textbooks]] diff --git a/logseq/bak/podman.md.2022-05-26T18_27_02.884Z b/logseq/bak/podman.md.2022-05-26T18_27_02.884Z new file mode 100644 index 000000000..7981b4546 --- /dev/null +++ b/logseq/bak/podman.md.2022-05-26T18_27_02.884Z @@ -0,0 +1,24 @@ +# podman +- a [[tool]]. + - [[docker]] alternative. + - advantages: supposedly more secure (doesn't require root), less complex architecture. + - part of the [[fedora]] project. + - https://social.coop/web/statuses/105866648612458840 + - [[install]] https://podman.io/getting-started/installation + - #go https://podman.io/ + - #git https://github.com/containers/podman + - [[rootless shortcomings]] https://github.com/containers/podman + - there are enough that I'll probably go with a root-based setup to begin with, while learning the system. + - else when things fail I'll probably find it hard to figure out if it's due to rootless or something else. +- [[notes on adoption]] + - On Debian 11, I had to install package [[uidmap]] to avoid https://github.com/containers/podman/issues/9271 + - Also I had to edit /etc/containers/registries.conf and set: + - `unqualified-search-registries = ["docker.io"]` + - ...to have podman search work as per in the upstream instructions (Debian ships with ultra-safe defaults or something.) + +``` +podman run --rm -it fedora +podman run --rm -it debian +``` + +Drop you into a one-off bare VM, it gets automatically cleaned up when you exit. diff --git a/podman.md b/podman.md index 7981b4546..69ca1d3b0 100644 --- a/podman.md +++ b/podman.md @@ -22,3 +22,7 @@ podman run --rm -it debian ``` Drop you into a one-off bare VM, it gets automatically cleaned up when you exit. + +``` +podman build Dockerfile +```