Skip to content

Commit 0aaa584

Browse files
authored
Merge branch 'main' into main
2 parents 6f1bee7 + 85dfa16 commit 0aaa584

178 files changed

Lines changed: 830 additions & 147 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,12 @@ A huge thank you to all our contributors! ScaleTail wouldn’t be what it is tod
8787
| 🗃️ **Netbox** | NetBox is the leading solution for modeling and documenting modern networks. | [Details](services/netbox) |
8888
| 🧩 **Pi-hole** | A network-level ad blocker that acts as a DNS sinkhole. | [Details](services/pihole) |
8989
| 🆔 **Pocket ID** | A self-hosted decentralized identity (OIDC) solution for secure authentication. | [Details](services/pocket-id) |
90+
| 🌐 **Rustdesk Server** | RustDesk is an open source remote control alternative for self-hosting and security. | [Details](services/rustdesk-server)|
9091
| 🔒 **Technitium DNS** | An open-source DNS server that can be used for self-hosted DNS services. | [Details](services/technitium) |
9192
| 🌐 **Traefik** | A modern reverse proxy and load balancer for microservices. | [Details](services/traefik) |
9293
| 🚀 **Tailscale Exit Node** | Configure a device to act as an exit node for your Tailscale network. | [Details](services/tailscale-exit-node) |
94+
| 🌐 **Tailscale Subnet Router Node** | Configure a device to act as a subnet router node for your Tailscale network. | [Details](services/tailscale-subnet-router-node) |
95+
9396

9497
### 🎥 Media and Entertainment
9598

services/actual-budget/.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ DNS_SERVER=9.9.9.9 # Preferred DNS server for Tailscale. Uncomment the "dns:" se
1313
# Tailscale Configuration
1414
TS_AUTHKEY= # Auth key from https://tailscale.com/admin/authkeys. See: https://tailscale.com/kb/1085/auth-keys#generate-an-auth-key for instructions.
1515

16+
# Time Zone setting for containers
17+
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
18+
1619
# Optional Service variables
1720
# PUID=1000

services/actual-budget/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ services:
5555
environment:
5656
- PUID=1000
5757
- PGID=1000
58-
- TZ=Europe/Amsterdam
58+
- TZ=${TZ}
5959
# Uncomment any of the lines below to set configuration options.
6060
# - ACTUAL_HTTPS_KEY=/data/selfhost.key
6161
# - ACTUAL_HTTPS_CERT=/data/selfhost.crt

services/adguardhome-sync/.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ DNS_SERVER=9.9.9.9
1313
# Tailscale Configuration
1414
TS_AUTHKEY=
1515

16+
# Time Zone setting for containers
17+
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
18+
1619
# Optional Service variables
1720
# PUID=1000

services/adguardhome-sync/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
container_name: app-${SERVICE} # Name for local container management
4343
command: run
4444
environment:
45-
- TZ=Europe/Amsterdam
45+
- TZ=${TZ}
4646
# Origin AdGuardHome
4747
- ORIGIN_URL=http://192.168.1.1:3000 #Your origin Adguard Home instance -> change as necessary
4848
- ORIGIN_USERNAME=username #change as necessary

services/adguardhome/.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ DNS_SERVER=9.9.9.9
1313
# Tailscale Configuration
1414
TS_AUTHKEY=
1515

16+
# Time Zone setting for containers
17+
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
18+
1619
# Optional Service variables
1720
# PUID=1000

services/adguardhome/compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ services:
5454
network_mode: service:tailscale # Sidecar configuration to route ${SERVICE} through Tailscale
5555
container_name: app-${SERVICE} # Name for local container management
5656
environment:
57-
- TZ=Europe/Amsterdam
57+
- TZ=${TZ}
5858
volumes:
5959
- ./${SERVICE}-data/workdir:/opt/adguardhome/work # Work directory for Adguard Home - you may need to change the path
6060
- ./${SERVICE}-data/configdir:/opt/adguardhome/conf # Config directory for Adguard Home - you may need to change the path
@@ -67,4 +67,4 @@ services:
6767
timeout: 10s # Time to wait for the check to succeed
6868
retries: 3 # Number of retries before marking as unhealthy
6969
start_period: 30s # Time to wait before starting health checks
70-
restart: always
70+
restart: always

services/anchor/.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ DNS_SERVER=9.9.9.9 # Preferred DNS server for Tailscale. Uncomment the "dns:" se
1313
# Tailscale Configuration
1414
TS_AUTHKEY= # Auth key from https://tailscale.com/admin/authkeys. See: https://tailscale.com/kb/1085/auth-keys#generate-an-auth-key for instructions.
1515

16+
# Time Zone setting for containers
17+
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
18+
1619
# Optional Service variables
1720
# PUID=1000

services/anchor/compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ services:
5555
environment:
5656
- PUID=1000
5757
- PGID=1000
58-
- TZ=Europe/Amsterdam
58+
- TZ=${TZ}
5959
volumes:
6060
- ./${SERVICE}-data:/data
6161
depends_on:
@@ -67,4 +67,4 @@ services:
6767
timeout: 10s # Time to wait for the check to succeed
6868
retries: 3 # Number of retries before marking as unhealthy
6969
start_period: 30s # Time to wait before starting health checks
70-
restart: always
70+
restart: always

services/arcane/.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ DNS_SERVER=9.9.9.9 # Preferred DNS server for Tailscale. Uncomment the "dns:" se
1313
# Tailscale Configuration
1414
TS_AUTHKEY= # Auth key from https://tailscale.com/admin/authkeys. See: https://tailscale.com/kb/1085/auth-keys#generate-an-auth-key for instructions.
1515

16+
# Time Zone setting for containers
17+
TZ=Europe/Amsterdam # See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
18+
1619
# Optional Service variables
1720
TAILNET_NAME= # for example: tail-scale

0 commit comments

Comments
 (0)