docs(docker): add podman notes (#2035)
This commit is contained in:
parent
2e995355dc
commit
6cdb7f7d03
1 changed files with 24 additions and 3 deletions
|
|
@ -52,8 +52,9 @@ Create and run the container (substitute your `<values>`):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d \
|
docker run -d \
|
||||||
|
--device /dev/dri/ \
|
||||||
--name=<image_name> \
|
--name=<image_name> \
|
||||||
--restart=unless-stopped
|
--restart=unless-stopped \
|
||||||
-e PUID=<uid> \
|
-e PUID=<uid> \
|
||||||
-e PGID=<gid> \
|
-e PGID=<gid> \
|
||||||
-e TZ=<timezone> \
|
-e TZ=<timezone> \
|
||||||
|
|
@ -86,6 +87,25 @@ services:
|
||||||
- "47998-48000:47998-48000/udp"
|
- "47998-48000:47998-48000/udp"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Using podman run
|
||||||
|
Create and run the container (substitute your `<values>`):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
podman run -d \
|
||||||
|
--device /dev/dri/ \
|
||||||
|
--name=<image_name> \
|
||||||
|
--restart=unless-stopped \
|
||||||
|
--userns=keep-id \
|
||||||
|
-e PUID=<uid> \
|
||||||
|
-e PGID=<gid> \
|
||||||
|
-e TZ=<timezone> \
|
||||||
|
-v <path to data>:/config \
|
||||||
|
-p 47984-47990:47984-47990/tcp \
|
||||||
|
-p 48010:48010 \
|
||||||
|
-p 47998-48000:47998-48000/udp \
|
||||||
|
<image>
|
||||||
|
```
|
||||||
|
|
||||||
### Parameters
|
### Parameters
|
||||||
You must substitute the `<values>` with your own settings.
|
You must substitute the `<values>` with your own settings.
|
||||||
|
|
||||||
|
|
@ -132,8 +152,9 @@ The architectures supported by these images are shown in the table below.
|
||||||
| tag suffix | amd64/x86_64 | arm64/aarch64 |
|
| tag suffix | amd64/x86_64 | arm64/aarch64 |
|
||||||
|-----------------|--------------|---------------|
|
|-----------------|--------------|---------------|
|
||||||
| archlinux | ✅ | ❌ |
|
| archlinux | ✅ | ❌ |
|
||||||
|
| debian-bookworm | ✅ | ✅ |
|
||||||
| debian-bullseye | ✅ | ✅ |
|
| debian-bullseye | ✅ | ✅ |
|
||||||
| fedora-36 | ✅ | ✅ |
|
| fedora-38 | ✅ | ✅ |
|
||||||
| fedora-37 | ✅ | ✅ |
|
| fedora-39 | ✅ | ✅ |
|
||||||
| ubuntu-20.04 | ✅ | ✅ |
|
| ubuntu-20.04 | ✅ | ✅ |
|
||||||
| ubuntu-22.04 | ✅ | ✅ |
|
| ubuntu-22.04 | ✅ | ✅ |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue