Workflow update

main
technorabilia 1 year ago
parent 8c8c25ad81
commit 7802d5e7b0

@ -20,4 +20,6 @@ services:
ports:
# Audacity desktop gui.
- 3000:3000
# Audacity desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -8,6 +8,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Audacity desktop gui.` \
-p 3001:3001 `# Audacity desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/audacity/config:/config `# Users home directory in the container, stores program settings and images` \
--restart unless-stopped \
ghcr.io/linuxserver/audacity

@ -19,15 +19,12 @@ services:
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
# See the keyboard layouts section for more information and options.
- KEYBOARD=en-us-qwerty # optional
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/blender/config:/config
ports:
# Blender desktop gui
- 3000:3000
devices:
# Add this for hardware acceleration (Linux hosts only)
- /dev/dri:/dev/dri # optional
# Blender desktop gui HTTPS
- 3001:3001
restart: unless-stopped

@ -11,9 +11,8 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e SUBFOLDER=/ `# optional` `# Specify a subfolder to use with reverse proxies, IE `/subfolder/`` \
-e KEYBOARD=en-us-qwerty `# optional` `# See the keyboard layouts section for more information and options.` \
-p 3000:3000 `# Blender desktop gui` \
-p 3001:3001 `# Blender desktop gui HTTPS` \
-v ${BASEDIR:-/volume1/docker}/blender/config:/config `# Users home directory in the container, stores local files and settings` \
--device /dev/dri:/dev/dri `# optional` `# Add this for hardware acceleration (Linux hosts only)` \
--restart unless-stopped \
ghcr.io/linuxserver/blender

@ -25,6 +25,8 @@ services:
ports:
# Boinc desktop gui.
- 8080:8080
# Boinc desktop gui HTTPS.
- 8181:8181
devices:
# Only needed if you want to use your Intel GPU (vaapi).
- /dev/dri:/dev/dri # optional

@ -12,6 +12,7 @@ docker run -d \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e PASSWORD= `# optional` `# Optionally set a password for the gui.` \
-p 8080:8080 `# Boinc desktop gui.` \
-p 8181:8181 `# Boinc desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/boinc/config:/config `# Where BOINC should store its database and config.` \
--device /dev/dri:/dev/dri `# optional` `# Only needed if you want to use your Intel GPU (vaapi).` \
--restart unless-stopped \

@ -1,7 +1,7 @@
# [Calibre](https://calibre-ebook.com/) is a powerful and easy to use e-book
# manager. Users say its outstanding and a must-have. Itll allow you to do
# manager. Users say it's outstanding and a must-have. It'll allow you to do
# nearly everything and it takes things a step beyond normal e-book software.
# Its also completely free and open source and great for both casual users and
# It's also completely free and open source and great for both casual users and
# computer experts.
---
@ -27,6 +27,8 @@ services:
ports:
# Calibre desktop gui.
- 8080:8080
# Calibre desktop gui HTTPS.
- 8181:8181
# Calibre webserver gui.
- 8081:8081
restart: unless-stopped

@ -1,7 +1,7 @@
# [Calibre](https://calibre-ebook.com/) is a powerful and easy to use e-book
# manager. Users say its outstanding and a must-have. Itll allow you to do
# manager. Users say it's outstanding and a must-have. It'll allow you to do
# nearly everything and it takes things a step beyond normal e-book software.
# Its also completely free and open source and great for both casual users and
# It's also completely free and open source and great for both casual users and
# computer experts.
source ./.env
@ -13,6 +13,7 @@ docker run -d \
-e PASSWORD= `# optional` `# Optionally set a password for the gui.` \
-e CLI_ARGS= `# optional` `# Optionally pass cli start arguments to calibre.` \
-p 8080:8080 `# Calibre desktop gui.` \
-p 8181:8181 `# Calibre desktop gui HTTPS.` \
-p 8081:8081 `# Calibre webserver gui.` \
-v ${BASEDIR:-/volume1/docker}/calibre/config:/config `# Where calibre should store its database and library.` \
--restart unless-stopped \

@ -23,4 +23,6 @@ services:
ports:
# Darktable desktop gui.
- 3000:3000
# Darktable desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -11,6 +11,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Darktable desktop gui.` \
-p 3001:3001 `# Darktable desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/darktable/config:/config `# Users home directory in the container, stores program settings and images` \
--restart unless-stopped \
ghcr.io/linuxserver/darktable

@ -16,12 +16,12 @@ services:
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
# See the keyboard layouts section for more information and options.
- KEYBOARD=en-us-qwerty # optional
volumes:
# Users home directory in the container, stores database.
- ${BASEDIR:-/volume1/docker}/digikam/config:/config
ports:
# digiKam desktop gui
- 3000:3000 # optional
# digiKam desktop gui HTTPS
- 3001:3001 # optional
restart: unless-stopped

@ -8,8 +8,8 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e SUBFOLDER=/ `# optional` `# Specify a subfolder to use with reverse proxies, IE `/subfolder/`` \
-e KEYBOARD=en-us-qwerty `# optional` `# See the keyboard layouts section for more information and options.` \
-p 3000:3000 `# optional` `# digiKam desktop gui` \
-p 3001:3001 `# optional` `# digiKam desktop gui HTTPS` \
-v ${BASEDIR:-/volume1/docker}/digikam/config:/config `# Users home directory in the container, stores database.` \
--restart unless-stopped \
ghcr.io/linuxserver/digikam

@ -23,4 +23,6 @@ services:
ports:
# Double Commander desktop gui.
- 3000:3000
# Double Commander desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -9,6 +9,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Double Commander desktop gui.` \
-p 3001:3001 `# Double Commander desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/doublecommander/config:/config `# Users home directory in the container, stores program settings.` \
-v ${BASEDIR:-/volume1/docker}/doublecommander/data:/data `# Host data directories, mount as many as needed.` \
--restart unless-stopped \

@ -21,4 +21,6 @@ services:
ports:
# FileZilla desktop gui.
- 3000:3000
# FileZilla desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -9,6 +9,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# FileZilla desktop gui.` \
-p 3001:3001 `# FileZilla desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/filezilla/config:/config `# Users home directory in the container, stores local files and settings` \
--restart unless-stopped \
ghcr.io/linuxserver/filezilla

@ -23,5 +23,7 @@ services:
ports:
# Firefox desktop gui.
- 3000:3000
# Firefox desktop gui HTTPS.
- 3001:3001
shm_size: "1gb"
restart: unless-stopped

@ -11,6 +11,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Firefox desktop gui.` \
-p 3001:3001 `# Firefox desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/firefox/config:/config `# Users home directory in the container, stores local files and settings` \
--shm-size="1gb" \
--restart unless-stopped \

@ -17,14 +17,14 @@ services:
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
# See the keyboard layouts section for more information and options.
- KEYBOARD=en-us-qwerty # optional
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/kdenlive/config:/config
ports:
# Kdenlive desktop gui
- 3000:3000
# Kdenlive desktop gui HTTPS
- 3001:3001
devices:
# Add this for hardware acceleration (Linux hosts only)
- /dev/dri:/dev/dri # optional

@ -9,8 +9,8 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e SUBFOLDER=/ `# optional` `# Specify a subfolder to use with reverse proxies, IE `/subfolder/`` \
-e KEYBOARD=en-us-qwerty `# optional` `# See the keyboard layouts section for more information and options.` \
-p 3000:3000 `# Kdenlive desktop gui` \
-p 3001:3001 `# Kdenlive desktop gui HTTPS` \
-v ${BASEDIR:-/volume1/docker}/kdenlive/config:/config `# Users home directory in the container, stores local files and settings` \
--device /dev/dri:/dev/dri `# optional` `# Add this for hardware acceleration (Linux hosts only)` \
--shm-size="1gb" `# optional` \

@ -22,4 +22,6 @@ services:
ports:
# LibreOffice desktop gui.
- 3000:3000
# LibreOffice desktop gui HTTPS.
- 3000:3000
restart: unless-stopped

@ -10,6 +10,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# LibreOffice desktop gui.` \
-p 3000:3000 `# LibreOffice desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/libreoffice/config:/config `# Users home directory in the container, stores program settings and documents` \
--restart unless-stopped \
ghcr.io/linuxserver/libreoffice

@ -22,6 +22,8 @@ services:
ports:
# Mysql Workbench desktop gui.
- 3000:3000
# Mysql Workbench desktop gui HTTPS.
- 3001:3001
cap_add:
- IPC_LOCK
restart: unless-stopped

@ -10,6 +10,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Mysql Workbench desktop gui.` \
-p 3001:3001 `# Mysql Workbench desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/mysql-workbench/config:/config `# Users home directory in the container, stores program settings.` \
--cap-add="IPC_LOCK" \
--restart unless-stopped \

@ -21,4 +21,6 @@ services:
ports:
# Pidgin desktop gui.
- 3000:3000
# Pidgin desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -9,6 +9,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Pidgin desktop gui.` \
-p 3001:3001 `# Pidgin desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/pidgin/config:/config `# Users home directory in the container, stores local files and settings` \
--restart unless-stopped \
ghcr.io/linuxserver/pidgin

@ -23,4 +23,6 @@ services:
ports:
# QdirStat desktop gui.
- 3000:3000
# QdirStat desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -9,6 +9,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# QdirStat desktop gui.` \
-p 3001:3001 `# QdirStat desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/qdirstat/config:/config `# Users home directory in the container, stores qdirstat settings and scans.` \
-v ${BASEDIR:-/volume1/docker}/qdirstat/data:/data `# Data you want to analyze disk usage information of.` \
--restart unless-stopped \

@ -24,4 +24,6 @@ services:
ports:
# Remmina desktop gui.
- 3000:3000
# Remmina desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -12,6 +12,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Remmina desktop gui.` \
-p 3001:3001 `# Remmina desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/remmina/config:/config `# Users home directory in the container, stores program settings.` \
--restart unless-stopped \
ghcr.io/linuxserver/remmina

@ -21,4 +21,6 @@ services:
ports:
# Sqlitebrowser desktop gui.
- 3000:3000
# Sqlitebrowser desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -9,6 +9,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# Sqlitebrowser desktop gui.` \
-p 3001:3001 `# Sqlitebrowser desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/sqlitebrowser/config:/config `# Users home directory in the container, stores program settings and potentially dump files.` \
--restart unless-stopped \
ghcr.io/linuxserver/sqlitebrowser

@ -28,4 +28,6 @@ services:
ports:
# WireShark desktop gui, only use this if you are not using host mode and sniffing Docker network traffic.
- 3000:3000 # optional
# WireShark desktop gui HTTPS, only use this if you are not using host mode and sniffing Docker network traffic.
- 3001:3001 # optional
restart: unless-stopped

@ -15,6 +15,7 @@ docker run -d \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 3000:3000 `# optional` `# WireShark desktop gui, only use this if you are not using host mode and sniffing Docker network traffic.` \
-p 3001:3001 `# optional` `# WireShark desktop gui HTTPS, only use this if you are not using host mode and sniffing Docker network traffic.` \
-v ${BASEDIR:-/volume1/docker}/wireshark/config:/config `# Users home directory in the container, stores program settings and potentially dump files.` \
--restart unless-stopped \
ghcr.io/linuxserver/wireshark

Loading…
Cancel
Save