Remove Organizr dashboard and Netdata monitoring: - Delete stacks/organizr.yml and stacks/netdata.yml - Delete organizr-widgets/ directory and npm forward-auth config - Remove organizr database references from postgres-shared docs Promote Tatlock UI as primary dashboard: - Move from port 8092 to 9999 (Organizr's port) - Enable external access at home.schweitz.net - Update all documentation references Update service counts: 26 containers across 20 stacks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
version: '3.8'
|
|
|
|
# Tatlock UI - Home Lab Dashboard (Flutter Web)
|
|
# Port: 9999 (HTTP)
|
|
# GPU: No
|
|
# External: home.schweitz.net
|
|
# Storage: None (stateless static web app)
|
|
#
|
|
# Container image built from: git.schweitz.internal/jpmschweitzer/tatlock-ui
|
|
# See CONTAINERS.md for port allocation reference
|
|
|
|
services:
|
|
tatlock-ui:
|
|
image: git.schweitz.internal/jpmschweitzer/tatlock-ui:latest
|
|
container_name: tatlock-ui
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9999:80"
|
|
networks:
|
|
- docker-dataplane
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=true"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -q --spider http://localhost:80/ || exit 1"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 128M
|
|
reservations:
|
|
memory: 32M
|
|
|
|
networks:
|
|
docker-dataplane:
|
|
external: true
|
|
name: docker-dataplane
|
|
|
|
# Access:
|
|
# - Internal: http://tower-of-joy:9999
|
|
# - Mesh VPN: http://10.99.0.1:9999
|
|
# - External: https://home.schweitz.net
|