Files
watcher/docker-compose.yml
primal 5ecb5b5ed7 Configure dashboard for dashboard.1440.news
- docker-compose.yml: Traefik routing for dashboard.1440.news
- OAUTH_BASE_URL set to https://dashboard.1440.news
- routes.go: Updated default base URL to dashboard.1440.news
- Local dev accessible at dashboard.1440.localhost
2026-02-02 13:10:59 -05:00

51 lines
1.7 KiB
YAML

services:
dashboard:
build:
context: ..
dockerfile: dashboard/Dockerfile
image: atproto-1440news-dashboard
container_name: atproto-1440news-dashboard
restart: unless-stopped
stop_grace_period: 30s
env_file:
- oauth.env
environment:
DB_HOST: infra-postgres
DB_PORT: 5432
DB_USER: dba_1440_news
DB_PASSWORD_FILE: /run/secrets/db_password
DB_NAME: db_1440_news
OAUTH_BASE_URL: https://dashboard.1440.news
secrets:
- db_password
networks:
- proxy
- atproto
labels:
- "traefik.enable=true"
# Production: HTTPS with Let's Encrypt for dashboard.1440.news
- "traefik.http.routers.dashboard-1440.rule=Host(`dashboard.1440.news`)"
- "traefik.http.routers.dashboard-1440.entrypoints=https"
- "traefik.http.routers.dashboard-1440.tls.certresolver=letsencrypt-dns"
# Production: HTTP to HTTPS redirect
- "traefik.http.routers.dashboard-1440-redirect.rule=Host(`dashboard.1440.news`)"
- "traefik.http.routers.dashboard-1440-redirect.entrypoints=http"
- "traefik.http.routers.dashboard-1440-redirect.middlewares=https-redirect"
- "traefik.http.middlewares.https-redirect.redirectscheme.scheme=https"
- "traefik.http.middlewares.https-redirect.redirectscheme.permanent=true"
# Local development
- "traefik.http.routers.dashboard-1440-local.rule=Host(`dashboard.1440.localhost`)"
- "traefik.http.routers.dashboard-1440-local.entrypoints=http"
# Shared service
- "traefik.http.services.dashboard-1440.loadbalancer.server.port=4321"
secrets:
db_password:
file: ../../../infra/postgres/secrets/dba_1440_news_password.txt
networks:
proxy:
external: true
atproto:
external: true