Skip to content

Commit a51853e

Browse files
authored
Merge pull request #132 from trjohnson19/trjohnson19/2025-08-06-remove-t2
Purge `traefik2` / `t2` / ... from repo
2 parents e63e25b + ad93676 commit a51853e

Some content is hidden

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

58 files changed

+87
-85
lines changed

.bash_aliases.example

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ alias docdf='sudo docker system df'
1414
alias dclogs='sudo docker logs -tf --tail="50" '
1515
alias fixsecrets='sudo chown -R root:root /path/to/docker/secrets ; sudo chmod -R 600 /path/to/docker/secrets'
1616

17-
# DOCKER TRAEFIK 2
18-
alias dcrun2='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker compose-t2.yml '
19-
alias dcfulllogs2='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker compose-t2.yml logs -tf '
20-
alias dclogs2='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker compose-t2.yml logs -tf --tail="100" '
21-
alias dcup2='dcrun2 up -d'
22-
alias dcdown2='dcrun2 down'
23-
alias dcrec2='dcrun2 up -d --force-recreate'
24-
alias dcbuild2='dcrun2 build --pull --no-cache'
25-
alias dcstop2='dcrun2 stop'
26-
alias dcrestart2='dcrun2 restart '
27-
alias dcpull2='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker compose-t2.yml pull'
28-
alias dcedit2='cd /path/to/docker ; nano docker compose-t2.yml'
17+
# DOCKER TRAEFIK
18+
alias dcrun='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker-compose.yml '
19+
alias dcfulllogs='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker-compose.yml logs -tf '
20+
alias dclogs='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker-compose.yml logs -tf --tail="100" '
21+
alias dcup='dcrun up -d'
22+
alias dcdown='dcrun down'
23+
alias dcrec='dcrun up -d --force-recreate'
24+
alias dcbuild='dcrun build --pull --no-cache'
25+
alias dcstop='dcrun stop'
26+
alias dcrestart='dcrun restart '
27+
alias dcpull='cd /path/to/docker ; sudo docker compose -f /path/to/docker/docker-compose.yml pull'
28+
alias dcedit='cd /path/to/docker ; nano docker-compose.yml'

.env.example

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,19 +101,21 @@ WHOAMI_PORT=80
101101
WIREGUARD_CLIENT_PORT=51821
102102
WIREGUARD_PORT=80
103103

104-
##### t2_proxy network IPs
104+
##### traefik_proxy network IPs
105105
## Example values given, can be whatever IPs are desired
106106

107107
## Traefik IPv4
108-
T2_PROXY_GATEWAY=10.123.101.1
109-
T2_PROXY_SUBNET=10.123.101.0/24
108+
# dotenv-linter:off UnorderedKey
109+
TRAEFIK_PROXY_GATEWAY=10.123.101.1
110+
TRAEFIK_PROXY_SUBNET=10.123.101.0/24
110111
TRAEFIK_IPV4=10.123.101.254
112+
# dotenv-linter:on UnorderedKey
111113

112114
## Traefik IPv6
113-
T2_PROXY_IPV6_SUBNET_PREFIX="${SERVER_ULA_PREFIX}:1" # Replace `1` with a randomly generated 2 byte hexadecimal
114-
T2_PROXY_IPV6_SUBNET="${T2_PROXY_IPV6_SUBNET_PREFIX}::/64"
115-
T2_PROXY_IPV6_GATEWAY="${T2_PROXY_IPV6_SUBNET_PREFIX}::1"
116-
TRAEFIK_IPV6="${T2_PROXY_IPV6_SUBNET_PREFIX}:ffff:ffff:ffff:fffe"
115+
TRAEFIK_PROXY_IPV6_SUBNET_PREFIX="${SERVER_ULA_PREFIX}:1" # Replace `1` with a randomly generated 2 byte hexadecimal
116+
TRAEFIK_PROXY_IPV6_SUBNET="${TRAEFIK_PROXY_IPV6_SUBNET_PREFIX}::/64"
117+
TRAEFIK_PROXY_IPV6_GATEWAY="${TRAEFIK_PROXY_IPV6_SUBNET_PREFIX}::1"
118+
TRAEFIK_IPV6="${TRAEFIK_PROXY_IPV6_SUBNET_PREFIX}:ffff:ffff:ffff:fffe"
117119

118120
## Other IPs
119121
BAZARR_IPV4=10.123.101.101

appdata/authentik/config/ak-outpost-ldap-conf.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docker_labels:
2020
traefik.http.services.ak-outpost-ldap-healthcheck-svc.loadbalancer.healthcheck.path: /outpost.goauthentik.io/ping
2121
traefik.http.services.ak-outpost-ldap-healthcheck-svc.loadbalancer.healthcheck.port: "<AUTHENTIK_LDAP_HEALTHCHECK_PORT>" # Likely 9300
2222
authentik_host: https://authentik.<DOMAINNAME0>/
23-
docker_network: t2_proxy
23+
docker_network: traefik_proxy
2424
container_image: null
2525
docker_map_ports: false
2626
authentik_host_browser: ""

backup-scripts/borg-patternfile.example.lst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ R /home/<USER>/docker
3333
+ /home/<USER>/docker/.env
3434
- /home/<USER>/docker/.env.example
3535
- /home/<USER>/docker/.gitignore
36-
+ /home/<USER>/docker/docker-compose-t2.yml
36+
+ /home/<USER>/docker/docker-compose.yml
3737
- /home/<USER>/docker/LICENSE
3838
- /home/<USER>/docker/README.md
3939

compose/adminer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
container_name: adminer
66
image: adminer:latest
77
networks:
8-
- t2_proxy
8+
- traefik_proxy
99
security_opt:
1010
- no-new-privileges:true
1111
restart: unless-stopped

compose/audiobookshelf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
image: ghcr.io/advplyr/audiobookshelf:latest
66
container_name: audiobookshelf
77
networks:
8-
- t2_proxy
8+
- traefik_proxy
99
security_opt:
1010
- no-new-privileges:true
1111
restart: unless-stopped

compose/authelia.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
## https://github.com/authelia/authelia#breaking-changes
2626
image: ghcr.io/authelia/authelia:4.38
2727
networks:
28-
- t2_proxy
28+
- traefik_proxy
2929
security_opt:
3030
- no-new-privileges:true
3131
restart: always

compose/authentik.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
container_name: authentik
2222
image: ghcr.io/goauthentik/server:latest
2323
networks:
24-
- t2_proxy
24+
- traefik_proxy
2525
security_opt:
2626
- no-new-privileges:true
2727
restart: always
@@ -99,7 +99,7 @@ services:
9999
container_name: authentik-worker
100100
image: ghcr.io/goauthentik/server:latest
101101
networks:
102-
- t2_proxy
102+
- traefik_proxy
103103
security_opt:
104104
- no-new-privileges:true
105105
restart: always

compose/bazarr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
image: lscr.io/linuxserver/bazarr
66
container_name: bazarr
77
networks:
8-
- t2_proxy
8+
- traefik_proxy
99
security_opt:
1010
- no-new-privileges:true
1111
restart: unless-stopped

compose/bluebubbles.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
image: sickcodes/docker-osx:ventura
77
container_name: bluebubbles-setup
88
networks:
9-
- t2_proxy
9+
- traefik_proxy
1010
security_opt:
1111
- no-new-privileges:false
1212
restart: unless-stopped
@@ -36,7 +36,7 @@ services:
3636
image: sickcodes/docker-osx:naked
3737
container_name: bluebubbles
3838
networks:
39-
- t2_proxy
39+
- traefik_proxy
4040
security_opt:
4141
- no-new-privileges:false
4242
restart: unless-stopped

0 commit comments

Comments
 (0)