111
This commit is contained in:
parent
560efdbf7f
commit
b60f5d50c3
|
@ -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
|
|
@ -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 # 宿主机重启后自动启动
|
Loading…
Reference in New Issue