25 lines
517 B
YAML
25 lines
517 B
YAML
services:
|
|
webtop:
|
|
container_name: webtop
|
|
image: lscr.io/linuxserver/webtop:debian-xfce
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- START_DOCKER=false
|
|
- LC_ALL=en_US.UTF-8
|
|
- TITLE=Webtop
|
|
networks:
|
|
- reverse-proxy
|
|
ports:
|
|
- 3003:3001
|
|
shm_size: 1gb
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/config:/config
|
|
- ${DOCKER_CONFIGS}/scripts:/custom-cont-init.d:ro
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true
|