Files
dockerservertest/docker-compose.yml
2023-06-27 13:54:12 -05:00

23 lines
506 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
shm_size: "1gb"
restart: unless-stopped