Compare commits
4 Commits
f3bbf41add
...
e951edffaf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e951edffaf | ||
|
|
2e67562d95 | ||
|
|
78688d8bf5 | ||
|
|
97a97f5028 |
@@ -6,7 +6,19 @@ server:
|
|||||||
|
|
||||||
# Security https://www.authelia.com/configuration/security/access-control/
|
# Security https://www.authelia.com/configuration/security/access-control/
|
||||||
access_control:
|
access_control:
|
||||||
|
networks:
|
||||||
|
- name: 'internal'
|
||||||
|
networks:
|
||||||
|
- '192.168.1.0/24'
|
||||||
|
- '172.16.0.0/12'
|
||||||
rules:
|
rules:
|
||||||
|
- domain: 'gitea.tremendousturtle.tools'
|
||||||
|
policy: bypass
|
||||||
|
networks:
|
||||||
|
- 'internal'
|
||||||
|
resources:
|
||||||
|
- '^/api([/?].*)?$'
|
||||||
|
- '^/v2([/?].*)?$'
|
||||||
- domain: '*.tremendousturtle.tools'
|
- domain: '*.tremendousturtle.tools'
|
||||||
policy: two_factor
|
policy: two_factor
|
||||||
|
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ import ttt-app-local cockpit 9090
|
|||||||
#import ttt-app frigate 8971
|
#import ttt-app frigate 8971
|
||||||
import ttt-app overseerr 5055
|
import ttt-app overseerr 5055
|
||||||
import ttt-app openobserve 5080
|
import ttt-app openobserve 5080
|
||||||
import ttt-app gitea 3000
|
#import ttt-app gitea 3000
|
||||||
#import ttt-app homepage 3000
|
#import ttt-app homepage 3000
|
||||||
import ttt-app requestrr 4545
|
import ttt-app requestrr 4545
|
||||||
|
|
||||||
@@ -161,3 +161,4 @@ import redirect home homepage
|
|||||||
|
|
||||||
import authentik frigate
|
import authentik frigate
|
||||||
import authentik code
|
import authentik code
|
||||||
|
import authentik gitea
|
||||||
|
|||||||
25
code-server/docker-compose.yml
Normal file
25
code-server/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
name: code-server
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
environment:
|
||||||
|
DOCKER_USER: chris
|
||||||
|
image: codercom/code-server:latest
|
||||||
|
networks:
|
||||||
|
- proxy-net
|
||||||
|
ports:
|
||||||
|
- "8020:8080"
|
||||||
|
expose:
|
||||||
|
- "8020"
|
||||||
|
- "8080"
|
||||||
|
restart: unless-stopped
|
||||||
|
user: "1000:1000"
|
||||||
|
volumes:
|
||||||
|
- /home/chris/.local:/home/coder/.local
|
||||||
|
- /home/chris/.config:/home/coder/.config
|
||||||
|
- /docker:/docker
|
||||||
|
- /code:/code
|
||||||
|
- /home/chris:/home/coder/chris-home
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy-net:
|
||||||
|
external: true
|
||||||
@@ -2,7 +2,8 @@ name: frigate
|
|||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: ghcr.io/blakeblackshear/frigate:stable
|
#image: ghcr.io/blakeblackshear/frigate:stable
|
||||||
|
image: gitea.tremendousturtle.tools/chris/frigate:v0.14.1-web-admin-088ff992
|
||||||
shm_size: "250mb"
|
shm_size: "250mb"
|
||||||
devices:
|
devices:
|
||||||
- /dev/apex_0:/dev/apex_0 # Passes a PCIe Coral
|
- /dev/apex_0:/dev/apex_0 # Passes a PCIe Coral
|
||||||
@@ -20,7 +21,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- proxy-net
|
- proxy-net
|
||||||
ports:
|
ports:
|
||||||
- "8971:8971"
|
# - "8971:8971"
|
||||||
- "8554:8554" # RTSP feeds
|
- "8554:8554" # RTSP feeds
|
||||||
- "8555:8555/tcp" # WebRTC over tcp
|
- "8555:8555/tcp" # WebRTC over tcp
|
||||||
- "8555:8555/udp" # WebRTC over udp
|
- "8555:8555/udp" # WebRTC over udp
|
||||||
|
|||||||
@@ -17,6 +17,9 @@ services:
|
|||||||
GITEA__database__USER: ${GITEA_DB_USER}
|
GITEA__database__USER: ${GITEA_DB_USER}
|
||||||
GITEA__database__PASSWD__FILE: /run/secrets/postgres_pass
|
GITEA__database__PASSWD__FILE: /run/secrets/postgres_pass
|
||||||
GITEA__server__SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE: gitea --config={{.CustomConf}} serv key-{{.Key.ID}}
|
GITEA__server__SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE: gitea --config={{.CustomConf}} serv key-{{.Key.ID}}
|
||||||
|
GITEA__service__ENABLE_REVERSE_PROXY_AUTHENTICATION: true
|
||||||
|
GITEA__service__ENABLE_REVERSE_PROXY_AUTO_REGISTRATION: true
|
||||||
|
GITEA__service__ENABLE_REVERSE_PROXY_EMAIL: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- gitea
|
- gitea
|
||||||
|
|||||||
Reference in New Issue
Block a user