All checks were successful
Deploy / deploy (push) Successful in 10s
- Switch from domnet → domverse (runs on domverse-berlin.eu) - OUTLINE_URL defaults to https://outline.domverse.de (public API) - Traefik labels match domverse-berlin.eu pattern - Revert workflow to direct docker compose (no SSH needed) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
790 B
YAML
27 lines
790 B
YAML
name: outline-sync
|
|
|
|
services:
|
|
outline-sync-ui:
|
|
build: .
|
|
container_name: outline-sync-ui
|
|
restart: unless-stopped
|
|
environment:
|
|
- OUTLINE_URL=${OUTLINE_URL:-https://outline.domverse.de}
|
|
- OUTLINE_TOKEN=${OUTLINE_TOKEN}
|
|
networks:
|
|
- default
|
|
- domverse
|
|
labels:
|
|
- "traefik.docker.network=domverse"
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.outline-sync.rule=Host(`sync.domverse-berlin.eu`)"
|
|
- "traefik.http.routers.outline-sync.entrypoints=https"
|
|
- "traefik.http.routers.outline-sync.tls.certresolver=http"
|
|
- "traefik.http.routers.outline-sync.middlewares=authentik@docker"
|
|
- "traefik.http.services.outline-sync.loadbalancer.server.port=8080"
|
|
|
|
networks:
|
|
default: {}
|
|
domverse:
|
|
external: true
|