webtop redisigned

This commit is contained in:
Max Buz
2025-02-03 18:49:46 +01:00
committed by GitHub
parent 0f761f6ba7
commit cfed7b861e
3 changed files with 16 additions and 23 deletions

View File

@@ -1,2 +0,0 @@
# Where webtop config will be stored
CONFIG=/path/to/webtop/data

View File

@@ -1,21 +0,0 @@
version: "2.1"
services:
webtop:
image: lscr.io/linuxserver/webtop:debian-mate
container_name: webtop
env_file:
- stack.env
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
# - CUSTOM_USER=user
# - PASSWORD=password
volumes:
- /home/mbuz/docker/webtop:/config
ports:
- 3000:3000
devices:
- /dev/dri:/dev/dri #optional
shm_size: "2gb" #optional
restart: unless-stopped

View File

@@ -0,0 +1,16 @@
services:
webtop:
image: lscr.io/linuxserver/webtop:${VERSION:- latest} # which version to use, latest is default. List of versions: https://docs.linuxserver.io/images/docker-webtop/#version-tags
container_name: webtop
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
volumes:
- ${PATH_TO_CONFIG}:/config
ports:
- 3000:3000
# devices:
# - /dev/dri:/dev/dri #optional
shm_size: "2gb" #optional
restart: unless-stopped