This commit is contained in:
xiaochou164 2025-05-14 19:46:54 +08:00
parent 560efdbf7f
commit b60f5d50c3
2 changed files with 29 additions and 0 deletions

14
alist.yml Normal file
View File

@ -0,0 +1,14 @@
version: '3.3'
services:
alist:
image: 'xhofe/alist:beta'
container_name: alist
volumes:
- '/etc/alist:/opt/alist/data'
ports:
- '5244:5244'
environment:
- PUID=0
- PGID=0
- UMASK=022
restart: unless-stopped

15
filerun.yml Normal file
View File

@ -0,0 +1,15 @@
version: '3.8'
services:
filerun:
image: ghcr.io/filerun/filerun
container_name: filerun
ports:
- 80 # 映射主机80端口到容器80端口
volumes:
- /app/filerun/data:/var/www/filerun/data # 配置与日志存储目录
- /app:/var/www/filerun/storage # 用户文件存储目录
environment:
- PUID=1000 # 容器用户UID默认值
- PGID=1000 # 容器用户GID默认值
restart: unless-stopped # 宿主机重启后自动启动