Add podman commands

This commit is contained in:
Ruben Solvang 2025-05-23 10:41:15 +02:00
parent 4a39b99602
commit aecdc38719

View file

@ -21,10 +21,9 @@ docker build -t debian-armyknife:custom .
```
podman:
```
missing
docker build -t debian-armyknife:custom . --network=host
```
###### 3. Verify that the new image is avaiable:
docker:
```
@ -34,7 +33,9 @@ debian-armyknife custom ba509e499dda 11 hours ago 321MB
```
podman:
```
missing
# podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
localhost/debian-armyknife custom 08c635e4b6fa 9 seconds ago 620 MB
```
###### 4. Run image:
@ -44,7 +45,7 @@ docker run -it debian-armyknife:custom bash
```
podman:
```
missing
podman run -it debian-armyknife:custom bash
```
###### 5. Run and attach to specific network:
@ -54,12 +55,10 @@ docker run --network [NETWORK NAME] -it debian-armyknife:custom bash
```
podman:
```
missing
podman run -it --net skypodnet0 debian-armyknife:custom bash
```
###### Add information on how to include via docker compose / quadlet:
###### Start with docker compose or as a quadlet with systemd:
docker:
```
missing
@ -67,6 +66,4 @@ missing
podman:
```
missing
```
```