-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
several organizational changes to simplify development and releasees
- Loading branch information
Showing
224 changed files
with
851 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
\n\Z7 ANNOUNCEMENT: \Zn v4.6.1 is the last version of Deployarr v4. Deployarr v5 is out with several new features that are not backward compatible. See migration info in Deployarr GitHub.\n | ||
\n\Z7 ANNOUNCEMENT: \Zn As of v5.2, Deployarr now supports 101 apps!!!.\n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
services: | ||
# Cloud Commander - web file manager | ||
cloud-commander: | ||
image: coderaiser/cloudcmd | ||
container_name: cloud-commander | ||
restart: unless-stopped | ||
security_opt: | ||
- no-new-privileges:true | ||
profiles: ["apps", "all"] | ||
networks: | ||
- default | ||
ports: | ||
- "$CLOUDCOMMANDER_PORT:8000" | ||
volumes: | ||
- $DOCKERDIR/appdata/cloud-commander:/root | ||
- $USERDIR:/data/$PRIMARY_USERNAME | ||
# - $MEDIADIR1:/data/media1 | ||
# - $MEDIADIR2:/data/media2 | ||
# - $MEDIADIR3:/data/media3 | ||
environment: | ||
PUID: $PUID | ||
PGID: $PGID | ||
TZ: $TZ | ||
# DOCKER-LABELS-PLACEHOLDER | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
services: | ||
# Cloudflared - Cloudflare Tunnel | ||
cloudflared: | ||
image: cloudflare/cloudflared:latest | ||
container_name: cloudflared | ||
security_opt: | ||
- no-new-privileges:true | ||
restart: unless-stopped | ||
profiles: ["core", "all"] | ||
network_mode: host | ||
command: tunnel run | ||
healthcheck: | ||
test: ["CMD", "cloudflared", "--version"] | ||
interval: 30s | ||
timeout: 10s | ||
retries: 3 | ||
start_period: 10s | ||
volumes: | ||
- /etc/localtime:/etc/localtime:ro | ||
- $DOCKERDIR/appdata/cloudflared/hosts:/etc/hosts | ||
environment: | ||
- TUNNEL_TOKEN=$CLOUDFLARE_TUNNEL_TOKEN | ||
# DOCKER-LABELS-PLACEHOLDER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
# CrowdSec - Open-source & Collaborative IPS | ||
crowdsec: | ||
image: crowdsecurity/crowdsec | ||
container_name: crowdsec | ||
security_opt: | ||
- no-new-privileges:true | ||
restart: unless-stopped | ||
profiles: ["core", "all"] | ||
ports: | ||
- "$CROWDSEC_PORT:8080" # Local API port | ||
- "6060:6060" # Exposing metrics via Zerotier IP | ||
environment: | ||
COLLECTIONS: "crowdsecurity/traefik crowdsecurity/http-cve crowdsecurity/whitelist-good-actors crowdsecurity/iptables crowdsecurity/linux fulljackz/proxmox crowdsecurity/sshd" | ||
GID: $PGID | ||
CUSTOM_HOSTNAME: $HOSTNAME | ||
volumes: | ||
- $DOCKERDIR/logs/$HOSTNAME:/logs/$HOSTNAME:ro | ||
- /var/log:/var/log:ro | ||
- $DOCKERDIR/appdata/crowdsec/data:/var/lib/crowdsec/data | ||
- $DOCKERDIR/appdata/crowdsec/config:/etc/crowdsec |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
# Digikam - Photo Management | ||
digikam: | ||
image: ghcr.io/linuxserver/digikam | ||
container_name: digikam | ||
security_opt: | ||
- no-new-privileges:true | ||
restart: "unless-stopped" | ||
profiles: ["apps", "all"] | ||
networks: | ||
- default | ||
ports: | ||
- "$DIGIKAM_PORT:3000" # HTTP | ||
volumes: | ||
- $DOCKERDIR/appdata/digikam:/config | ||
- $PHOTOSDIR:/data/photos | ||
environment: | ||
TZ: $TZ | ||
PUID: $PUID | ||
PGID: $PGID | ||
# DOCKER-LABELS-PLACEHOLDER |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
services: | ||
# Dockwatch - Docker Management and Notification | ||
dockwatch: | ||
image: ghcr.io/notifiarr/dockwatch:main | ||
container_name: dockwatch | ||
security_opt: | ||
- no-new-privileges:true | ||
restart: unless-stopped | ||
profiles: ["apps", "all"] | ||
ports: | ||
- "$DOCKWATCH_PORT:80" | ||
networks: | ||
- socket_proxy | ||
environment: | ||
- DOCKER_HOST=tcp://socket-proxy:2375 # Uncomment and adjust accordingly if you use a socket proxy | ||
- PUID=$PUID | ||
- PGID=$PGID | ||
- TZ=$TZ | ||
- ALLOW_START=1 | ||
- ALLOW_STOP=1 | ||
- ALLOW_RESTARTS=1 | ||
- CONTAINERS=1 | ||
- IMAGES=1 | ||
- PORTS=1 | ||
- NETWORKS=1 | ||
- POST=1 | ||
- VOLUMES=1 | ||
volumes: | ||
- $DOCKERDIR/appdata/dockwatch/config:/config | ||
#- /var/run/docker.sock:/var/run/docker.sock # Comment this line if you use a socket proxy | ||
# DOCKER-LABELS-PLACEHOLDER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
services: | ||
# Double Commander - File Manager | ||
double-commander: | ||
image: lscr.io/linuxserver/doublecommander:latest | ||
container_name: double-commander | ||
security_opt: | ||
- no-new-privileges:true | ||
restart: "unless-stopped" | ||
profiles: ["apps", "all"] | ||
networks: | ||
- default | ||
ports: | ||
- "$DOUBLECOMMANDER_PORT:3000" # HTTP | ||
# - 3001:3001 # HTTPS | ||
# DEVICES-GPU-PLACEHOLDER-DO-NOT-DELETE | ||
volumes: | ||
- $DOCKERDIR/appdata/double-commander:/config | ||
- $USERDIR:/data/$PRIMARY_USERNAME | ||
# - $MEDIADIR1:/data/media1 | ||
# - $MEDIADIR2:/data/media2 | ||
# - $MEDIADIR3:/data/media3 | ||
environment: | ||
TZ: $TZ | ||
PUID: $PUID | ||
PGID: $PGID | ||
# DOCKER-LABELS-PLACEHOLDER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
# DweebUI - WebUI for Docker Management | ||
dweebui: | ||
image: lllllllillllllillll/dweebui | ||
container_name: dweebui | ||
security_opt: | ||
- no-new-privileges:true | ||
restart: unless-stopped | ||
profiles: ["apps", "all"] | ||
networks: | ||
- default | ||
ports: | ||
- "$DWEEBUI_PORT:8000" | ||
volumes: | ||
- $DOCKERDIR/appdata/dweebui:/app/config | ||
# Docker socket | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
environment: | ||
PORT: 8000 # Leave it as-is | ||
SECRET: $DWEEBUI_SECRET | ||
# DOCKER-LABELS-PLACEHOLDER |
Oops, something went wrong.