Refactor request history storage and add Docker Compose file

This commit is contained in:
sHa
2024-03-12 16:38:32 +02:00
parent e9ad2f7c64
commit f37b33be9a
2 changed files with 32 additions and 8 deletions

20
compose.yml Normal file
View File

@@ -0,0 +1,20 @@
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