Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update Podman inside Distrobox #1597

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/useful_tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ user@test:~$ sudo systemctl status sshd

You may want to run a separate instance of docker inside your container.
In order to do this, create a [container with an init system](#using-init-system-inside-a-distrobox)
**using a podman rootful container or using docker** using the **unshare-all flag**
using rootful Podman or Docker and using the **unshare-all** flag.

Example:

Expand Down Expand Up @@ -323,15 +323,15 @@ luca-linux@tumbleweed:~$ sudo docker run --rm -ti alpine
## Using Podman inside a Distrobox

You may want to run a separate instance of podman inside your container.
In order to do this, create a container using the **unshare-all flag**, the
container manager can be anyone of choice.
In order to do this, create a container using using rootful Podman or Docker
and using the **unshare-all** flag.

Example:

```sh
distrobox create \
distrobox create --root \
--image registry.opensuse.org/opensuse/distrobox:latest \
--additional-packages "podman crun" \
--additional-packages "podman" \
--unshare-all
```

Expand Down Expand Up @@ -367,7 +367,7 @@ luca-linux@tumbleweed:~> sudo podman run --rm -ti alpine

You may want to run an LXC instance inside your container.
In order to do this, create a [container with an init system](#using-init-system-inside-a-distrobox)
using the **unshare-all flag**, this works with either docker, rootful podman, or rootless podman.
using the **unshare-all** flag, this works with either docker, rootful podman, or rootless podman.

Example:

Expand Down