Workflow update

main
technorabilia 1 month ago
parent 1d0701327f
commit f7d2de9e60

@ -1,23 +0,0 @@
# [Dillinger](https://github.com/joemccann/dillinger) is a cloud-enabled,
# mobile-ready, offline-storage, AngularJS powered HTML5 Markdown editor.
---
version: "2.1"
services:
dillinger:
image: ghcr.io/linuxserver/dillinger
container_name: dillinger
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:
# Dillinger plugin config files
- ${BASEDIR:-/volume1/docker}/dillinger/config:/config
ports:
# The port for the Dillinger web interface
- 8080:8080
restart: unless-stopped

@ -1,13 +0,0 @@
# [Dillinger](https://github.com/joemccann/dillinger) is a cloud-enabled,
# mobile-ready, offline-storage, AngularJS powered HTML5 Markdown editor.
. ./.env
docker run -d \
--name=dillinger \
-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 8080:8080 `# The port for the Dillinger web interface` \
-v ${BASEDIR:-/volume1/docker}/dillinger/config:/config `# Dillinger plugin config files` \
--restart unless-stopped \
ghcr.io/linuxserver/dillinger

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

@ -1,36 +0,0 @@
# [Domoticz](https://www.domoticz.com) is a Home Automation System that lets you
# monitor and configure various devices like: Lights, Switches, various
# sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much
# more. Notifications/Alerts can be sent to any mobile device.
---
version: "2.1"
services:
domoticz:
image: ghcr.io/linuxserver/domoticz
container_name: domoticz
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}
# Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying.
- WEBROOT=domoticz # optional
# Sets path to database. Do not set unless you know what this does.
- DBASE=<path to database> # optional
volumes:
# Where Domoticz stores config files and data.
- ${BASEDIR:-/volume1/docker}/domoticz/config:/config
ports:
# WebUI
- 8080:8080
# Domoticz communication port.
- 6144:6144
# Domoticz communication port.
- 1443:1443
devices:
# For passing through USB devices.
- path to device:path to device
restart: unless-stopped

@ -1,20 +0,0 @@
# [Domoticz](https://www.domoticz.com) is a Home Automation System that lets you
# monitor and configure various devices like: Lights, Switches, various
# sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much
# more. Notifications/Alerts can be sent to any mobile device.
. ./.env
docker run -d \
--name=domoticz \
-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 WEBROOT=domoticz `# optional` `# Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying.` \
-e DBASE=<path to database> `# optional` `# Sets path to database. Do not set unless you know what this does.` \
-p 8080:8080 `# WebUI` \
-p 6144:6144 `# Domoticz communication port.` \
-p 1443:1443 `# Domoticz communication port.` \
-v ${BASEDIR:-/volume1/docker}/domoticz/config:/config `# Where Domoticz stores config files and data.` \
--device path to device:path to device `# For passing through USB devices.` \
--restart unless-stopped \
ghcr.io/linuxserver/domoticz

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

@ -1,38 +0,0 @@
# [Endlessh](https://github.com/skeeto/endlessh) is an SSH tarpit that very
# slowly sends an endless, random SSH banner. It keeps SSH clients locked up for
# hours or even days at a time. The purpose is to put your real SSH server on
# another port and then let the script kiddies get stuck in this tarpit instead
# of bothering a real server.
---
version: "2.1"
services:
endlessh:
image: ghcr.io/linuxserver/endlessh
container_name: endlessh
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}
# The endless banner is sent one line at a time. This is the delay in milliseconds between individual lines.
- MSDELAY=10000 # optional
# The length of each line is randomized. This controls the maximum length of each line. Shorter lines may keep clients on for longer if they give up after a certain number of bytes.
- MAXLINES=32 # optional
# Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue.
- MAXCLIENTS=4096 # optional
# By default, the app logs to container log. If this is set to `true`, the log will be output to file under `/config/logs/endlessh` (`/config` needs to be mapped).
- LOGFILE=false # optional
# By default, the app binds to IPv4 and IPv6 addresses. Set it to `4` or `6` to bind to IPv4 only or IPv6 only, respectively. Leave blank to bind to both.
- BINDFAMILY= # optional
volumes:
# Configuration files.
- ${BASEDIR:-/volume1/docker}/endlessh/config:/config
# Required if `LOGFILE` is set to `true`.
- ${BASEDIR:-/volume1/docker}/endlessh/config:/config # optional
ports:
# ssh port
- 22:2222
restart: unless-stopped

@ -1,22 +0,0 @@
# [Endlessh](https://github.com/skeeto/endlessh) is an SSH tarpit that very
# slowly sends an endless, random SSH banner. It keeps SSH clients locked up for
# hours or even days at a time. The purpose is to put your real SSH server on
# another port and then let the script kiddies get stuck in this tarpit instead
# of bothering a real server.
. ./.env
docker run -d \
--name=endlessh \
-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 MSDELAY=10000 `# optional` `# The endless banner is sent one line at a time. This is the delay in milliseconds between individual lines.` \
-e MAXLINES=32 `# optional` `# The length of each line is randomized. This controls the maximum length of each line. Shorter lines may keep clients on for longer if they give up after a certain number of bytes.` \
-e MAXCLIENTS=4096 `# optional` `# Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue.` \
-e LOGFILE=false `# optional` `# By default, the app logs to container log. If this is set to `true`, the log will be output to file under `/config/logs/endlessh` (`/config` needs to be mapped).` \
-e BINDFAMILY= `# optional` `# By default, the app binds to IPv4 and IPv6 addresses. Set it to `4` or `6` to bind to IPv4 only or IPv6 only, respectively. Leave blank to bind to both.` \
-p 22:2222 `# ssh port` \
-v ${BASEDIR:-/volume1/docker}/endlessh/config:/config `# Configuration files.` \
-v ${BASEDIR:-/volume1/docker}/endlessh/config:/config `# optional` `# Required if `LOGFILE` is set to `true`.` \
--restart unless-stopped \
ghcr.io/linuxserver/endlessh

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

@ -1,44 +0,0 @@
# The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) software is a
# powerful, enterprise wireless software engine ideal for high-density client
# deployments requiring low latency and high uptime performance.
---
version: "2.1"
services:
unifi-controller:
image: ghcr.io/linuxserver/unifi-controller
container_name: unifi-controller
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}
# Optionally change the Java memory limit (in Megabytes). Set to `default` to reset to default
- MEM_LIMIT=1024 # optional
# Optionally change the Java initial/minimum memory (in Megabytes). Set to `default` to reset to default
- MEM_STARTUP=1024 # optional
volumes:
# All Unifi data stored here
- ${BASEDIR:-/volume1/docker}/unifi-controller/config:/config
ports:
# Unifi web admin port
- 8443:8443
# Unifi STUN port
- 3478:3478/udp
# Required for AP discovery
- 10001:10001/udp
# Required for device communication
- 8080:8080
# Required for `Make controller discoverable on L2 network` option
- 1900:1900/udp # optional
# Unifi guest portal HTTPS redirect port
- 8843:8843 # optional
# Unifi guest portal HTTP redirect port
- 8880:8880 # optional
# For mobile throughput test
- 6789:6789 # optional
# Remote syslog port
- 5514:5514/udp # optional
restart: unless-stopped

@ -1,24 +0,0 @@
# The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) software is a
# powerful, enterprise wireless software engine ideal for high-density client
# deployments requiring low latency and high uptime performance.
. ./.env
docker run -d \
--name=unifi-controller \
-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 MEM_LIMIT=1024 `# optional` `# Optionally change the Java memory limit (in Megabytes). Set to `default` to reset to default` \
-e MEM_STARTUP=1024 `# optional` `# Optionally change the Java initial/minimum memory (in Megabytes). Set to `default` to reset to default` \
-p 8443:8443 `# Unifi web admin port` \
-p 3478:3478/udp `# Unifi STUN port` \
-p 10001:10001/udp `# Required for AP discovery` \
-p 8080:8080 `# Required for device communication` \
-p 1900:1900/udp `# optional` `# Required for `Make controller discoverable on L2 network` option` \
-p 8843:8843 `# optional` `# Unifi guest portal HTTPS redirect port` \
-p 8880:8880 `# optional` `# Unifi guest portal HTTP redirect port` \
-p 6789:6789 `# optional` `# For mobile throughput test` \
-p 5514:5514/udp `# optional` `# Remote syslog port` \
-v ${BASEDIR:-/volume1/docker}/unifi-controller/config:/config `# All Unifi data stored here` \
--restart unless-stopped \
ghcr.io/linuxserver/unifi-controller

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