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:
image: lscr.io/linuxserver/sqlitebrowser:latest
container_name: sqlitebrowser
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
@ -68,6 +70,7 @@ services:
```bash
docker run -d \
--name=sqlitebrowser \
--security-opt seccomp=unconfined `#optional` \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
@ -105,6 +108,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| 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)
@ -155,6 +159,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions
* **23.10.22:** - Rebase to Alpine 3.16, migrate to s6v3.
* **16.02.22:** - Rebase to Alpine.
* **20.01.21:** - Remove Wireshark reference.
* **29.07.20:** - Initial release.