22 lines
439 B
YAML
22 lines
439 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
webtop:
|
|
container_name: webtop
|
|
image: lscr.io/linuxserver/webtop:debian-xfce
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- TITLE=DebianDev
|
|
- FM_HOME=/home/abc
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
shm_size: "1gb"
|
|
ports:
|
|
- 3000:3000
|
|
- 3001:3001
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/webtop/config:/config
|