vault backup: 2024-03-08 01:48:38

This commit is contained in:
2024-03-08 01:48:38 +08:00
parent 507fe6b74d
commit 080d8e989f

View File

@@ -75,6 +75,29 @@ volumes:
freshrss-db: freshrss-db:
``` ```
# qBittorrent
```yaml
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- /root/config:/config
- /mnt/sata3-1/download:/downloads
ports:
- 8081:8081
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
```
# Bitwardenrs # Bitwardenrs
```shell ```shell
@@ -87,3 +110,16 @@ docker run -d --name bitwardenrs \
-p 3012:3012 \ -p 3012:3012 \
vaultwarden/server:latest vaultwarden/server:latest
``` ```
# Lsky
```shell
docker run -d \
--name lsky-pro \
--restart unless-stopped \
-p 8089:8089 \
-v /mnt/usb3-1/lsky-pro:/var/www/html \
-e WEB_PORT=8089 \
halcyonazure/lsky-pro-docker:latest
```