Workflow update

main
technorabilia 1 year ago
parent 5806484ab2
commit 38a5e3922e

@ -1,23 +0,0 @@
This container needs special attention. Please check https://hub.docker.com/r/linuxserver/docker-compose for details.
---
version: "2.1"
services:
docker-compose:
image: ghcr.io/linuxserver/docker-compose
container_name: docker-compose
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=Etc/UTC
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Configuration files.
- ${BASEDIR:-/volume1/docker}/docker-compose/config:/config
ports:
# Application WebUI
- 80:80
restart: unless-stopped

@ -1,12 +0,0 @@
This container needs special attention. Please check https://hub.docker.com/r/linuxserver/docker-compose for details.
source ./.env
docker run -d \
--name=docker-compose \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 80:80 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/docker-compose/config:/config `# Configuration files.` \
--restart unless-stopped \
ghcr.io/linuxserver/docker-compose

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

@ -1,15 +0,0 @@
# [Guacd](https://guacamole.apache.org/) - Apache Guacamole is a clientless
# remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH.
# This container is only the backend server component needed to use The official
# or 3rd party HTML5 frontends.
---
version: "2.1"
services:
guacd:
image: ghcr.io/linuxserver/guacd
container_name: guacd
ports:
# Port Guacamole server listens on
- 4822:4822
restart: unless-stopped

@ -1,11 +0,0 @@
# [Guacd](https://guacamole.apache.org/) - Apache Guacamole is a clientless
# remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH.
# This container is only the backend server component needed to use The official
# or 3rd party HTML5 frontends.
source ./.env
docker run -d \
--name=guacd \
-p 4822:4822 `# Port Guacamole server listens on` \
--restart unless-stopped \
ghcr.io/linuxserver/guacd

@ -1,33 +0,0 @@
# [Ipfs](https://ipfs.io/) - A peer-to-peer hypermedia protocol designed to make
# the web faster, safer, and more open.
---
version: "2.1"
services:
ipfs:
image: ghcr.io/linuxserver/ipfs
container_name: ipfs
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=Etc/UTC
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# IPFS storage and config files/logs
- ${BASEDIR:-/volume1/docker}/ipfs/config:/config
ports:
# The port for the IPFS web UI
- 80:80
# Peering port, this is the only port you should expose to the internet
- 4001:4001
# API port, the clientside webUI needs to be able to talk to this from whatever machine your web browser is on
- 5001:5001
# Gateway Port, actually serves IPFS content
- 8080:8080
# HTTPS port for web UI
- 443:443 # optional
restart: unless-stopped

@ -1,18 +0,0 @@
# [Ipfs](https://ipfs.io/) - A peer-to-peer hypermedia protocol designed to make
# the web faster, safer, and more open.
source ./.env
docker run -d \
--name=ipfs \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 80:80 `# The port for the IPFS web UI` \
-p 4001:4001 `# Peering port, this is the only port you should expose to the internet` \
-p 5001:5001 `# API port, the clientside webUI needs to be able to talk to this from whatever machine your web browser is on` \
-p 8080:8080 `# Gateway Port, actually serves IPFS content` \
-p 443:443 `# optional` `# HTTPS port for web UI` \
-v ${BASEDIR:-/volume1/docker}/ipfs/config:/config `# IPFS storage and config files/logs` \
--restart unless-stopped \
ghcr.io/linuxserver/ipfs

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

@ -1,32 +0,0 @@
# [Nzbget](http://nzbget.net/) is a usenet downloader, written in C++ and
# designed with performance in mind to achieve maximum download speed by using
# very little system resources.
---
version: "2.1"
services:
nzbget:
image: ghcr.io/linuxserver/nzbget
container_name: nzbget
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=Etc/UTC
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Specify the user for web authentication.
- NZBGET_USER=nzbget # optional
# Specify the password for web authentication.
- NZBGET_PASS=tegbzn6789 # optional
volumes:
# NZBGet App data.
- ${BASEDIR:-/volume1/docker}/nzbget/config:/config
# Location of downloads on disk.
- ${BASEDIR:-/volume1/docker}/nzbget/downloads:/downloads # optional
ports:
# WebUI
- 6789:6789
restart: unless-stopped

@ -1,18 +0,0 @@
# [Nzbget](http://nzbget.net/) is a usenet downloader, written in C++ and
# designed with performance in mind to achieve maximum download speed by using
# very little system resources.
source ./.env
docker run -d \
--name=nzbget \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-e NZBGET_USER=nzbget `# optional` `# Specify the user for web authentication.` \
-e NZBGET_PASS=tegbzn6789 `# optional` `# Specify the password for web authentication.` \
-p 6789:6789 `# WebUI` \
-v ${BASEDIR:-/volume1/docker}/nzbget/config:/config `# NZBGet App data.` \
-v ${BASEDIR:-/volume1/docker}/nzbget/downloads:/downloads `# optional` `# Location of downloads on disk.` \
--restart unless-stopped \
ghcr.io/linuxserver/nzbget

@ -1,4 +0,0 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/nzbget/config
mkdir -p ${BASEDIR:-/volume1/docker}/nzbget/downloads `#optional`

@ -0,0 +1,26 @@
# [PairDrop](https://github.com/schlagmichdoch/PairDrop) is a sublime
# alternative to AirDrop that works on all platforms. Send images, documents or
# text via peer to peer connection to devices in the same local network/Wi-Fi or
# to paired devices.
---
version: "2.1"
services:
pairdrop:
image: ghcr.io/linuxserver/pairdrop
container_name: pairdrop
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=Etc/UTC
# Set to `true` to limit clients to 100 requests per 5 min
- RATE_LIMIT=false # optional
# Set to `true` to enable websocket fallback if the peer to peer WebRTC connection is not available to the client (see App Setup notes).
- WS_FALLBACK=false # optional
ports:
# http gui
- 3000:3000
restart: unless-stopped

@ -0,0 +1,16 @@
# [PairDrop](https://github.com/schlagmichdoch/PairDrop) is a sublime
# alternative to AirDrop that works on all platforms. Send images, documents or
# text via peer to peer connection to devices in the same local network/Wi-Fi or
# to paired devices.
source ./.env
docker run -d \
--name=pairdrop \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e RATE_LIMIT=false `# optional` `# Set to `true` to limit clients to 100 requests per 5 min` \
-e WS_FALLBACK=false `# optional` `# Set to `true` to enable websocket fallback if the peer to peer WebRTC connection is not available to the client (see App Setup notes).` \
-p 3000:3000 `# http gui` \
--restart unless-stopped \
ghcr.io/linuxserver/pairdrop

@ -1,32 +0,0 @@
# [Papermerge](https://www.papermerge.com/) is an open source document
# management system (DMS) primarily designed for archiving and retrieving your
# digital documents. Instead of having piles of paper documents all over your
# desk, office or drawers - you can quickly scan them and configure your scanner
# to directly upload to Papermerge DMS.'
---
version: "2.1"
services:
papermerge:
image: ghcr.io/linuxserver/papermerge
container_name: papermerge
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=Etc/UTC
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py
- REDIS_URL= # optional
volumes:
# Contains all relevant configuration files.
- ${BASEDIR:-/volume1/docker}/papermerge/config:/config
# Storage location for all papermerge data files.
- ${BASEDIR:-/volume1/docker}/papermerge/data:/data
ports:
# http gui
- 8000:8000
restart: unless-stopped

@ -1,19 +0,0 @@
# [Papermerge](https://www.papermerge.com/) is an open source document
# management system (DMS) primarily designed for archiving and retrieving your
# digital documents. Instead of having piles of paper documents all over your
# desk, office or drawers - you can quickly scan them and configure your scanner
# to directly upload to Papermerge DMS.'
source ./.env
docker run -d \
--name=papermerge \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-e REDIS_URL= `# optional` `# Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py` \
-p 8000:8000 `# http gui` \
-v ${BASEDIR:-/volume1/docker}/papermerge/config:/config `# Contains all relevant configuration files.` \
-v ${BASEDIR:-/volume1/docker}/papermerge/data:/data `# Storage location for all papermerge data files.` \
--restart unless-stopped \
ghcr.io/linuxserver/papermerge

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