mirror of
https://github.com/shadoll/scatcher.git
synced 2025-12-20 03:26:59 +00:00
21 lines
580 B
YAML
21 lines
580 B
YAML
networks:
|
|
apps-proxy:
|
|
external: true
|
|
name: apps-proxy
|
|
|
|
services:
|
|
catcher:
|
|
image: shadoll/scatcher
|
|
volumes:
|
|
- ./storage:/app/storage
|
|
networks:
|
|
- "apps-proxy"
|
|
labels:
|
|
traefik.enable: true
|
|
traefik.docker.network: apps-proxy
|
|
traefik.http.routers.catcher.entrypoints: websecure
|
|
traefik.http.routers.catcher.rule: Host(`catcher.rs.shadoll.dev`)
|
|
traefik.http.routers.catcher.tls: true
|
|
traefik.http.routers.catcher.tls.certresolver: letsencrypt
|
|
traefik.http.services.catcher.loadbalancer.server.port: 5000
|