Skip to content

Commit

Permalink
Showing 2 changed files with 36 additions and 0 deletions.
35 changes: 35 additions & 0 deletions docs/rn/0.23.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Release 0.23
:material-calendar: 2022-01-25

## Podman β
Containerlab' ties to docker are quite substantial. Basically, containerlab assumes that users have Docker runtime installed to launch containerized labs.

But docker is not the only runtime that can be used to launch containers. Containerd, Podman and a few other alternative high level runtimes have been available for quite a while.
In containerlab 0.23.0 we add beta support for [Podman](https://podman.io/) runtime, thanks to @LimeHat contribution!

Why podman? Well, a few reasons:

1. Podman offers the most similar experience to Docker while not using docker at all; one can make an alias `podman->docker` and use the same docker-cli commands with the podman runtime.
2. It is easier to install and sometimes comes as a default choice on redhat based distributions.
3. Supporting an alternative runtime can make containerlab usable on systems which can't have docker installed for various reasons.
4. And of course, it is fun to add a runtime which is not docker :D

All in all, we encourage you to test podman runtime if it is of interest to you. Note that not every containerlab feature is supported with podman yet, but the basics are all there.

When you install podman, make sure to enable the podman service for the API to work:

```
systemctl enable podman
systemctl start podman
```

and then you can use containerlab as per usual with just a flag enabling podman runtime:

```
containerlab --runtime podman deploy -t mytopo.clab.yml
```


## Miscellaneous
* now whenever users decide to select an existing bridge as a backend for docker network, containerlab will check if the bridge has been already addressed and use the gateway information based on that. Read more about this new feature [here](../manual/network.md#bridge-name).
* new community posts.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -84,6 +84,7 @@ nav:
- Leaf-spine topology: lab-examples/templated01.md
- 5-stage Clos topology: lab-examples/templated02.md
- Release notes:
- "0.23": rn/0.23.md
- "0.22": rn/0.22.md
- "0.21": rn/0.21.md
- "0.20": rn/0.20.md

0 comments on commit 49cdc53

Please sign in to comment.