From b60f5d50c30a8d99f06face9b5cd1c48cd1f8c5d Mon Sep 17 00:00:00 2001 From: xiaochou164 Date: Wed, 14 May 2025 19:46:54 +0800 Subject: [PATCH] 111 --- alist.yml | 14 ++++++++++++++ filerun.yml | 15 +++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 alist.yml create mode 100644 filerun.yml diff --git a/alist.yml b/alist.yml new file mode 100644 index 0000000..2dee8ee --- /dev/null +++ b/alist.yml @@ -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 \ No newline at end of file diff --git a/filerun.yml b/filerun.yml new file mode 100644 index 0000000..9642aa7 --- /dev/null +++ b/filerun.yml @@ -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 # 宿主机重启后自动启动 \ No newline at end of file