20 lines
620 B
YAML
Raw Permalink Normal View History

2025-02-11 16:53:30 +08:00
# path:: mkdir -pv /data/volumes/tasks.md/{tasks,config}
# pull:: docker compose -p memos --env-file ./tasks.md/env.cfg -f ./tasks.md/stack.yml pull
# run:: docker compose -p memos --env-file ./tasks.md/env.cfg -f ./tasks.md/stack.yml up -d
2025-02-11 16:39:49 +08:00
services:
tasks.md:
image: ${IMAGE_TAG}
container_name: tasks.md
environment:
- PUID=1000
- PGID=1000
2025-02-11 17:06:15 +08:00
- TZ=Asia/Shanghai
2025-02-11 16:39:49 +08:00
volumes:
- ${Volumes_Path}/tasks:/tasks
- ${Volumes_Path}/config:/config
2025-02-11 17:06:15 +08:00
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
2025-02-11 16:39:49 +08:00
restart: unless-stopped
ports:
- 5480:8080