Compare commits

..

3 Commits

Author SHA1 Message Date
xiaochou164 e654b3b3a2 Merge branch 'main' of https://git.sundays.ink/xiaochou164/docker-compose-sync 2025-05-14 19:50:16 +08:00
xiaochou164 ccd109b335 1111 2025-05-14 19:49:47 +08:00
xiaochou164 b60f5d50c3 111 2025-05-14 19:46:54 +08:00
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 # 宿主机重启后自动启动