Bot Updating Documentation

pull/63/head
LinuxServer-CI 2022-10-23 20:30:15 +02:00
rodzic 121773ce4b
commit debef841b2
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -52,6 +52,8 @@ services:
sqlitebrowser: sqlitebrowser:
image: lscr.io/linuxserver/sqlitebrowser:latest image: lscr.io/linuxserver/sqlitebrowser:latest
container_name: sqlitebrowser container_name: sqlitebrowser
security_opt:
- seccomp:unconfined #optional
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@ -68,6 +70,7 @@ services:
```bash ```bash
docker run -d \ docker run -d \
--name=sqlitebrowser \ --name=sqlitebrowser \
--security-opt seccomp=unconfined `#optional` \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=Europe/London \ -e TZ=Europe/London \
@ -105,6 +108,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| Parameter | Function | | Parameter | Function |
| :-----: | --- | | :-----: | --- |
| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |
## Environment variables from files (Docker secrets) ## Environment variables from files (Docker secrets)
@ -155,6 +159,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions ## Versions
* **23.10.22:** - Rebase to Alpine 3.16, migrate to s6v3.
* **16.02.22:** - Rebase to Alpine. * **16.02.22:** - Rebase to Alpine.
* **20.01.21:** - Remove Wireshark reference. * **20.01.21:** - Remove Wireshark reference.
* **29.07.20:** - Initial release. * **29.07.20:** - Initial release.