Workflow update

main
technorabilia 3 weeks ago
parent b2c035fb0a
commit 2918811563

@ -0,0 +1,28 @@
# [Ardour](https://ardour.org/) is an open source, collaborative effort of a
# worldwide team including musicians, programmers, and professional recording
# engineers.
---
version: "2.1"
services:
ardour:
image: ghcr.io/linuxserver/ardour
container_name: ardour
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
volumes:
# Users home directory in the container, stores data and application config files.
- ${BASEDIR:-/volume1/docker}/ardour/config:/config
ports:
# Ardour desktop gui
- 3000:3000 # optional
# Ardour desktop gui HTTPS
- 3001:3001 # optional
restart: unless-stopped

@ -0,0 +1,16 @@
# [Ardour](https://ardour.org/) is an open source, collaborative effort of a
# worldwide team including musicians, programmers, and professional recording
# engineers.
. ./.env
docker run -d \
--name=ardour \
-e PUID=${PUID:-1024} `# for UserID` \
-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/`` \
-p 3000:3000 `# optional` `# Ardour desktop gui` \
-p 3001:3001 `# optional` `# Ardour desktop gui HTTPS` \
-v ${BASEDIR:-/volume1/docker}/ardour/config:/config `# Users home directory in the container, stores data and application config files.` \
--restart unless-stopped \
ghcr.io/linuxserver/ardour

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/ardour/config

@ -0,0 +1,26 @@
# [FreeTube](https://freetubeapp.io/) is a feature-rich and user-friendly
# YouTube client with a focus on privacy.
---
version: "2.1"
services:
freetube:
image: ghcr.io/linuxserver/freetube
container_name: freetube
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/freetube/config:/config
ports:
# FreeTube desktop gui.
- 3000:3000
# HTTPS FreeTube desktop gui.
- 3001:3001
shm_size: "1gb"
restart: unless-stopped

@ -0,0 +1,15 @@
# [FreeTube](https://freetubeapp.io/) is a feature-rich and user-friendly
# YouTube client with a focus on privacy.
. ./.env
docker run -d \
--name=freetube \
-e PUID=${PUID:-1024} `# for UserID` \
-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 `# FreeTube desktop gui.` \
-p 3001:3001 `# HTTPS FreeTube desktop gui.` \
-v ${BASEDIR:-/volume1/docker}/freetube/config:/config `# Users home directory in the container, stores local files and settings` \
--shm-size="1gb" \
--restart unless-stopped \
ghcr.io/linuxserver/freetube

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/freetube/config

@ -0,0 +1,26 @@
# [KeePassXC](https://keepassxc.org/) is a free and open-source password
# manager. It started as a community fork of KeePassX (itself a cross-platform
# port of KeePass).
---
version: "2.1"
services:
keepassxc:
image: ghcr.io/linuxserver/keepassxc
container_name: keepassxc
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/keepassxc/config:/config
ports:
# KeePassXC desktop gui.
- 3000:3000
# KeePassXC desktop gui HTTPS.
- 3001:3001
restart: unless-stopped

@ -0,0 +1,15 @@
# [KeePassXC](https://keepassxc.org/) is a free and open-source password
# manager. It started as a community fork of KeePassX (itself a cross-platform
# port of KeePass).
. ./.env
docker run -d \
--name=keepassxc \
-e PUID=${PUID:-1024} `# for UserID` \
-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 `# KeePassXC desktop gui.` \
-p 3001:3001 `# KeePassXC desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/keepassxc/config:/config `# Users home directory in the container, stores local files and settings` \
--restart unless-stopped \
ghcr.io/linuxserver/keepassxc

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/keepassxc/config

@ -0,0 +1,30 @@
# [LibreWolf](https://librewolf.net/) is a custom and independent version of
# Firefox, with the primary goals of privacy, security and user freedom.
# LibreWolf also aims to remove all the telemetry, data collection and
# annoyances, as well as disabling anti-freedom features like DRM.
---
version: "2.1"
services:
librewolf:
image: ghcr.io/linuxserver/librewolf
container_name: librewolf
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Specify one or multiple LibreWolf CLI flags, this string will be passed to the application in full.
- LIBREWOLF_CLI=https://www.linuxserver.io/ # optional
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/librewolf/config:/config
ports:
# LibreWolf desktop gui.
- 3000:3000
# LibreWolf desktop gui HTTPS.
- 3001:3001
shm_size: "1gb"
restart: unless-stopped

@ -0,0 +1,18 @@
# [LibreWolf](https://librewolf.net/) is a custom and independent version of
# Firefox, with the primary goals of privacy, security and user freedom.
# LibreWolf also aims to remove all the telemetry, data collection and
# annoyances, as well as disabling anti-freedom features like DRM.
. ./.env
docker run -d \
--name=librewolf \
-e PUID=${PUID:-1024} `# for UserID` \
-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 LIBREWOLF_CLI=https://www.linuxserver.io/ `# optional` `# Specify one or multiple LibreWolf CLI flags, this string will be passed to the application in full.` \
-p 3000:3000 `# LibreWolf desktop gui.` \
-p 3001:3001 `# LibreWolf desktop gui HTTPS.` \
-v ${BASEDIR:-/volume1/docker}/librewolf/config:/config `# Users home directory in the container, stores local files and settings` \
--shm-size="1gb" \
--restart unless-stopped \
ghcr.io/linuxserver/librewolf

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/librewolf/config
Loading…
Cancel
Save