18 lines
448 B
YAML
18 lines
448 B
YAML
version: "2.1"
|
|
services:
|
|
webtop:
|
|
image: ghcr.io/linuxserver/webtop:ubuntu-mate
|
|
container_name: webtop
|
|
privileged: true #optional
|
|
environment:
|
|
- PUID=1024
|
|
- PGID=100
|
|
- TZ=Europe/Warsaw
|
|
- SUBFOLDER=/ #optional
|
|
volumes:
|
|
- /volume1/docker/webtop:/config
|
|
- /var/run/docker.sock:/var/run/docker.sock #optional
|
|
ports:
|
|
- 3000:3000
|
|
shm_size: "1gb" #optional
|
|
restart: unless-stopped |