Files
dockerservertest/docker-compose.yml

24 lines
544 B
YAML

version: '3.3'
services:
webtop:
image: lscr.io/linuxserver/webtop:debian-xfce
container_name: webtop
security_opt:
- seccomp:unconfined
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- TITLE=DebianDev
volumes:
- ${DOCKERCONFIGS}/webtop/config:/config
- ${DOCKERCONFIGS}/webtop/home:/home
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 3000:3000
- 3001:3001
devices:
- /dev/dri:/dev/dri
shm_size: "1gb"
restart: unless-stopped