mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
19 lines
456 B
YAML
19 lines
456 B
YAML
---
|
|
services:
|
|
webtop:
|
|
image: ${WEBTOP_IMAGE:-lscr.io/linuxserver/webtop:debian-xfce}
|
|
security_opt:
|
|
- seccomp:unconfined #optional
|
|
environment:
|
|
- PUID=${WEBTOP_PUID:-1000}
|
|
- PGID=${WEBTOP_PGID:-1000}
|
|
- TZ=${TZ:-America/Vancouver}
|
|
- TITLE=${WEBTOP_TITLE:-Webtop}
|
|
volumes:
|
|
- "${VOL_PATH:-/tmp}/webtop:/config"
|
|
ports:
|
|
- 3000:3000
|
|
- 3001:3001
|
|
shm_size: "4gb"
|
|
restart: unless-stopped
|