add local access
All checks were successful
lint-test-docker / docker-lint (push) Successful in 1m3s
renovate / renovate (push) Successful in 1m12s

This commit is contained in:
2025-10-23 19:47:09 -05:00
parent a42c30a961
commit 38b8fcecc3
2 changed files with 17 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ customDNS:
;; Application Names ;; Application Names
traefik-ps10rp IN CNAME ps10rp traefik-ps10rp IN CNAME ps10rp
garage IN CNAME ps10rp
gitea IN CNAME ps10rp gitea IN CNAME ps10rp
www IN CNAME ps10rp www IN CNAME ps10rp
homepage IN CNAME ps10rp homepage IN CNAME ps10rp

View File

@@ -10,8 +10,8 @@ services:
- TS_ENABLE_METRICS=true - TS_ENABLE_METRICS=true
- TS_HOSTNAME=garage-ps10rp - TS_HOSTNAME=garage-ps10rp
- TS_SERVE_CONFIG=/config/serve.json - TS_SERVE_CONFIG=/config/serve.json
network_mode: service:garage
restart: always restart: always
network_mode: service:garage
volumes: volumes:
- tailscale:/var/lib/tailscale - tailscale:/var/lib/tailscale
- ${PWD}/serve.json:/config/serve.json:ro - ${PWD}/serve.json:/config/serve.json:ro
@@ -24,6 +24,8 @@ services:
env_file: env_file:
- .env - .env
restart: always restart: always
networks:
internal: null
volumes: volumes:
- ${PWD}/garage.toml:/etc/garage.toml:ro - ${PWD}/garage.toml:/etc/garage.toml:ro
- meta:/var/lib/garage/meta - meta:/var/lib/garage/meta
@@ -32,16 +34,28 @@ services:
webui: webui:
image: khairul169/garage-webui:1.1.0 image: khairul169/garage-webui:1.1.0
container_name: garage-webui container_name: garage-webui
network_mode: service:garage
env_file: env_file:
- .env - .env
environment: environment:
API_BASE_URL: "http://127.0.0.1:3903" API_BASE_URL: "http://127.0.0.1:3903"
S3_ENDPOINT_URL: "http://127.0.0.1:3900" S3_ENDPOINT_URL: "http://127.0.0.1:3900"
labels:
traefik.enable: true
traefik.docker.network: internal
traefik.http.routers.garage-webui.entrypoints: web-secure
traefik.http.routers.garage-webui.rule: Host(`garage.lebens-home.net`)
traefik.http.routers.garage-webui.service: garage-webui
traefik.http.services.garage-webui.loadbalancer.server.port: 3009
restart: always restart: always
network_mode: service:garage
volumes: volumes:
- ${PWD}/garage.toml:/etc/garage.toml:ro - ${PWD}/garage.toml:/etc/garage.toml:ro
networks:
internal:
name: internal
external: true
volumes: volumes:
tailscale: tailscale:
meta: meta: