This commit is contained in:
msnie
2024-02-03 11:58:42 +01:00
parent 17ca1c805f
commit 5b0b5f548c
706 changed files with 135245 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
DOMAIN_NAME=knast.cc
DEFAULT_NETWORK=traefik
+29
View File
@@ -0,0 +1,29 @@
version: "2.1"
services:
pairdrop:
image: lscr.io/linuxserver/pairdrop:latest
container_name: pairdrop
networks:
- traefik
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- RATE_LIMIT=false #optional
- WS_FALLBACK=false #optional
- RTC_CONFIG= #optional
- DEBUG_MODE=false #optional
labels:
- "traefik.enable=true"
- "traefik.http.routers.pairdrop.entrypoints=websecure"
- "traefik.http.routers.pairdrop.rule=Host(`pair.$DOMAIN_NAME`)"
- "traefik.http.routers.pairdrop.tls.certresolver=letsencr"
- "traefik.http.services.pairdrop.loadbalancer.server.port=3000"
ports:
- 3003:3000
restart: unless-stopped
networks:
traefik:
external: true