mirror of
https://github.com/ghndrx/docker-compose.git
synced 2026-02-10 06:45:14 +00:00
add traefik labels to deluge
This commit is contained in:
@@ -9,6 +9,13 @@ services:
|
|||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=Etc/UTC
|
- TZ=Etc/UTC
|
||||||
- DELUGE_LOGLEVEL=error #optional
|
- DELUGE_LOGLEVEL=error #optional
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.deluge.rule=Host(`deluge.hndrx.co`)"
|
||||||
|
- "traefik.http.routers.deluge.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.deluge.tls=true"
|
||||||
|
- "traefik.http.routers.deluge.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.services.deluge.loadbalancer.server.port=8112"
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/deluge/config:/config
|
- /opt/deluge/config:/config
|
||||||
- /opt/deluge/downloads:/downloads
|
- /opt/deluge/downloads:/downloads
|
||||||
|
|||||||
34
vaultwarden/docker-compose.yml
Normal file
34
vaultwarden/docker-compose.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
vaultwarden:
|
||||||
|
container_name: vaultwarden
|
||||||
|
image: vaultwarden/server:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./data/:/data/
|
||||||
|
ports:
|
||||||
|
- XXXX:80
|
||||||
|
environment:
|
||||||
|
- DOMAIN=https://subdomain.yourdomain.com
|
||||||
|
- LOGIN_RATELIMIT_MAX_BURST=10
|
||||||
|
- LOGIN_RATELIMIT_SECONDS=60
|
||||||
|
- ADMIN_RATELIMIT_MAX_BURST=10
|
||||||
|
- ADMIN_RATELIMIT_SECONDS=60
|
||||||
|
- ADMIN_TOKEN=YourReallyStrongAdminTokenHere
|
||||||
|
- SENDS_ALLOWED=true
|
||||||
|
- EMERGENCY_ACCESS_ALLOWED=true
|
||||||
|
- WEB_VAULT_ENABLED=true
|
||||||
|
- SIGNUPS_ALLOWED=false
|
||||||
|
- SIGNUPS_VERIFY=true
|
||||||
|
- SIGNUPS_VERIFY_RESEND_TIME=3600
|
||||||
|
- SIGNUPS_VERIFY_RESEND_LIMIT=5
|
||||||
|
- SIGNUPS_DOMAINS_WHITELIST=yourdomainhere.com,anotherdomain.com
|
||||||
|
- SMTP_HOST=smtp.youremaildomain.com
|
||||||
|
- SMTP_FROM=vaultwarden@youremaildomain.com
|
||||||
|
- SMTP_FROM_NAME=Vaultwarden
|
||||||
|
- SMTP_SECURITY=SECURITYMETHOD
|
||||||
|
- SMTP_PORT=XXXX
|
||||||
|
- SMTP_USERNAME=vaultwarden@youremaildomain.com
|
||||||
|
- SMTP_PASSWORD=YourReallyStrongPasswordHere
|
||||||
|
- SMTP_AUTH_MECHANISM="Mechanism"
|
||||||
Reference in New Issue
Block a user