Add com.ghost.tel/stack-type labels to all stacks: - prod (17): Production services from core - dev-only (11): Experimental/device-specific services - public (8): Public-facing services (uplink.tel, sequela.tel) New public stacks from docker-public: - nitter-public: Nitter instance for uplink.tel - freshrss-public: FreshRSS for uplink.tel - rsshub-public: RSSHub for uplink.tel - searx-public: SearXNG for uplink.tel - wikijs-public: Wiki.js for sequela.tel - matomo-public: Matomo analytics for sequela.tel Also fixes: - Remove obsolete 'version' key from compose files - Fix snowflake to remove duplicate watchtower service - Standardize compose file formatting Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
services:
|
|
changedetection:
|
|
image: ghcr.io/dgtlmoon/changedetection.io
|
|
container_name: changedetection
|
|
hostname: changedetection
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/datastore
|
|
environment:
|
|
- PLAYWRIGHT_DRIVER_URL=ws://playwright-chrome:3000/?stealth=1&--disable-web-security=true
|
|
ports:
|
|
- 5000:5000
|
|
networks:
|
|
- web
|
|
labels:
|
|
- "com.ghost.tel/stack-type=prod"
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.changedetection.entrypoints=https"
|
|
- "traefik.http.routers.changedetection.rule=Host(`change.${DOMAIN}`)"
|
|
- "traefik.http.routers.changedetection.tls.certresolver=http"
|
|
- "traefik.http.routers.changedetection.middlewares=auth@file"
|
|
depends_on:
|
|
- playwright-chrome
|
|
|
|
playwright-chrome:
|
|
image: dgtlmoon/sockpuppetbrowser:latest
|
|
hostname: playwright-chrome
|
|
restart: unless-stopped
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
environment:
|
|
- SCREEN_WIDTH=1920
|
|
- SCREEN_HEIGHT=1024
|
|
- SCREEN_DEPTH=16
|
|
- MAX_CONCURRENT_CHROME_PROCESSES=10
|
|
networks:
|
|
- web
|
|
|
|
networks:
|
|
web:
|
|
external: true
|