deploy.stack/dufs/stack.yml

20 lines
529 B
YAML
Raw Normal View History

2025-02-14 17:32:50 +08:00
# path:: mkdir -pv /data/volumes/dufs/data
# pull:: docker compose -p memos --env-file ./dufs/env.cfg -f ./dufs/stack.yml pull
# run:: docker compose -p memos --env-file ./dufs/env.cfg -f ./dufs/stack.yml up -d
services:
dufs:
image: ${IMAGE_TAG}
container_name: dufs
environment:
- TZ=Asia/Shanghai
ports:
- 5000:5000
2025-02-14 17:43:01 +08:00
command: /data -A
2025-02-14 17:32:50 +08:00
volumes:
- ${Volumes_Path}/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped