mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
added thunderbird and webtop
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# Webtop
|
||||
|
||||
Last Updated: Sun August 11, 2024 18:18:54 PDT
|
||||
|
||||
## Overview
|
||||
|
||||
Docker Hub: https://hub.docker.com/r/linuxserver/webtop
|
||||
Proxy Port: 3000, 3001
|
||||
|
||||
It works, but distrobox might be what you are looking for.
|
||||
Better to run VNC to one app than this, but maybe you have a use case I don't.
|
||||
@@ -0,0 +1,20 @@
|
||||
---
|
||||
version: '3.8'
|
||||
|
||||
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
|
||||
@@ -0,0 +1,7 @@
|
||||
version: '3.4'
|
||||
|
||||
services:
|
||||
webtop:
|
||||
extends:
|
||||
file: ${COOKBOOK}/webtop/docker-compose.yml
|
||||
service: webtop
|
||||
@@ -0,0 +1,10 @@
|
||||
# Global
|
||||
VOL_PATH=/docker/vol/portainer-data #HELP: volpath
|
||||
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
|
||||
TZ=UTC
|
||||
|
||||
# webtop
|
||||
WEBTOP_IMAGE=lscr.io/linuxserver/webtop:debian-xfce
|
||||
WEBTOP_PUID=1000
|
||||
WEBTOP_PGID=1000
|
||||
WEBTOP_TITLE=Webtop
|
||||
Reference in New Issue
Block a user