build(docker): setup rootless image (#2032) [skip ci]

* build(docker): setup rootless image

---------

Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
This commit is contained in:
Ludovic Ortega
2025-10-14 23:49:57 +03:00
committed by GitHub
parent a8c7e35f56
commit 0354debd2b
6 changed files with 45 additions and 26 deletions

View File

@@ -31,6 +31,7 @@ For details on the Docker CLI, please [review the official `docker run` document
```bash
docker run -d \
--name jellyseerr \
--init \
-e LOG_LEVEL=debug \
-e TZ=Asia/Tashkent \
-e PORT=5055 \
@@ -85,6 +86,7 @@ Define the `jellyseerr` service in your `compose.yaml` as follows:
services:
jellyseerr:
image: fallenbagel/jellyseerr:latest
init: true
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
@@ -156,6 +158,7 @@ Then, create and start the Jellyseerr container:
```bash
docker run -d \
--name jellyseerr \
--init \
-e LOG_LEVEL=debug \
-e TZ=Asia/Tashkent \
-e PORT=5055 \
@@ -193,6 +196,7 @@ docker compose up -d
services:
jellyseerr:
image: fallenbagel/jellyseerr:latest
init: true
container_name: jellyseerr
environment:
- LOG_LEVEL=debug