nginx

nginxwebui

1
2
3
4
5
docker run -itd \
-v /home/nginxWebUI:/home/nginxWebUI \
-e BOOT_OPTIONS="--server.port=8080" \
--net=host \
cym1102/nginxwebui:latest

ddns-go

1
docker run -d --name ddns-go --restart=always --net=host -v /opt/ddns-go:/root jeessy/ddns-go

app

jellyfin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: "3.8"
services:
jellyfin:
container_name: jellyfin
network_mode: host
volumes:
- /mnt/nas/media:/media
ports:
- 8096:8096
devices:
- /dev/dri:/dev/dri
restart: unless-stopped
image: nyanmisaka/jellyfin
networks: {}

download

qbittorrent

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: "2.0"
services:
qbittorrent:
image: nevinee/qbittorrent # 如想参与测试工作可以指定nevinee/qbittorrent:unstable,如想使用集成了iyuu的版本请指定nevinee/qbittorrent:iyuu
container_name: qbittorrent
restart: always
tty: true
network_mode: host
hostname: qbitorrent
stop_grace_period: 10m # 让qBittorrent程序自行退出后再关闭/删除/重启容器的最长时间,如不设置,则docker默认10秒,这时,种子多的qBittorrent可能还没有完全保存好全部需要保存的信息。
volumes:
- ./data:/data # 配置保存目录
- /mnt/nas/media/qbittorrent:/data/downloads
tmpfs:
- /tmp
environment:
# 下面未列出的其他环境变量请根据环境变量清单自行添加
- WEBUI_PORT=8080 # WEBUI控制端口,可自定义
- BT_PORT=34567 # BT监听端口,可自定义
- PUID=3000 # 输入id -u可查询,群晖必须改
- PGID=3000 # 输入id -g可查询,群晖必须改
- QB_USERNAME=root
- QB_PASSWORD=God.0000
ports:
- 8080:8080 # 冒号左右一致,必须同WEBUI_PORT一样,本文件中的3个8080要改一起改
- 34567:34567 # 冒号左右一致,必须同BT_PORT一样,本文件中的5个34567要改一起改
- 34567:34567/udp # 冒号左右一致,必须同BT_PORT一样,本文件中的5个34567要改一起改
#- 8787:8787 # 如使用的是nevinee/qbittorrent:iyuu标签,请解除本行注释
#security_opt: # armv7设备请解除本行和下一行的注释
#- seccomp=unconfined
x-dockge:
urls: []
networks: {}

xunlei

1
2
3
4
5
6
7
8
9
10
11
12
13
version: "3.3"
services:
xunlei:
container_name: xunlei
hostname: xunlei
network_mode: host
volumes:
- /xunlei:/xunlei/data
- /mnt/nas/media/xunlei:/xunlei/downloads
restart: unless-stopped
privileged: true
image: cnk3x/xunlei:latest
networks: {}

librespeed

1
2
3
4
5
6
7
8
9
10
11
12
13
services:
librespeed:
image: lscr.io/linuxserver/librespeed:latest
container_name: librespeed
environment:
- TZ=Asia/Shanghai
volumes:
- /librespeed/config:/config
ports:
- 80:80
restart: unless-stopped
networks: {}