Skip to content

Commit 0113b2d

Browse files
Bot Updating Documentation
1 parent 468ce28 commit 0113b2d

File tree

1 file changed

+3
-16
lines changed

1 file changed

+3
-16
lines changed

docs/images/docker-webtop.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -236,21 +236,16 @@ services:
236236
webtop:
237237
image: lscr.io/linuxserver/webtop:latest
238238
container_name: webtop
239-
security_opt:
240-
- seccomp:unconfined #optional
241239
environment:
242240
- PUID=1000
243241
- PGID=1000
244242
- TZ=Etc/UTC
245-
- SUBFOLDER=/ #optional
246-
- TITLE=Webtop #optional
247243
volumes:
248244
- /path/to/data:/config
249-
- /var/run/docker.sock:/var/run/docker.sock #optional
250245
ports:
251246
- 3000:3000
252247
- 3001:3001
253-
shm_size: "1gb" #optional
248+
shm_size: "1gb"
254249
restart: unless-stopped
255250
```
256251
@@ -259,17 +254,13 @@ services:
259254
```bash
260255
docker run -d \
261256
--name=webtop \
262-
--security-opt seccomp=unconfined `#optional` \
263257
-e PUID=1000 \
264258
-e PGID=1000 \
265259
-e TZ=Etc/UTC \
266-
-e SUBFOLDER=/ `#optional` \
267-
-e TITLE=Webtop `#optional` \
268260
-p 3000:3000 \
269261
-p 3001:3001 \
270262
-v /path/to/data:/config \
271-
-v /var/run/docker.sock:/var/run/docker.sock `#optional` \
272-
--shm-size="1gb" `#optional` \
263+
--shm-size="1gb" \
273264
--restart unless-stopped \
274265
lscr.io/linuxserver/webtop:latest
275266
```
@@ -292,22 +283,18 @@ Containers are configured using parameters passed at runtime (such as those abov
292283
| `PUID=1000` | for UserID - see below for explanation |
293284
| `PGID=1000` | for GroupID - see below for explanation |
294285
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
295-
| `SUBFOLDER=/` | Specify a subfolder to use with reverse proxies, IE `/subfolder/` |
296-
| `TITLE=Webtop` | String which will be used as page/tab title in the web browser. |
297286

298287
### Volume Mappings (`-v`)
299288

300289
| Volume | Function |
301290
| :----: | --- |
302291
| `/config` | abc users home directory |
303-
| `/var/run/docker.sock` | Docker Socket on the system, if you want to use Docker in the container |
304292

305293
#### Miscellaneous Options
306294

307295
| Parameter | Function |
308296
| :-----: | --- |
309-
| `--shm-size=` | We set this to 1 gig to prevent modern web browsers from crashing |
310-
| `--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. |
297+
| `--shm-size=` | Recommended for all desktop images. |
311298

312299
## Environment variables from files (Docker secrets)
313300

0 commit comments

Comments
 (0)