18 lines
519 B
YAML
18 lines
519 B
YAML
services:
|
|
webtop:
|
|
image: xpipe/xpipe-selkies
|
|
container_name: xpipe-webtop
|
|
cap_add:
|
|
- NET_ADMIN # optional, to enable tailscale
|
|
privileged: true # optional, to enable tailscale
|
|
# environment:
|
|
# - SUBFOLDER=/ #optional, to run in a subfolder reverse proxy
|
|
volumes:
|
|
- ./config:/config
|
|
# - ./temp_data:/tmp
|
|
# - /var/run/docker.sock:/var/run/docker.sock #optional, to access host containers
|
|
ports:
|
|
- 13000:3000
|
|
- 13001:3001
|
|
restart: unless-stopped
|