nas_docker_compose/kodbox/docker-compose.yaml
2024-08-31 01:03:37 +08:00

13 lines
354 B
YAML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
services:
app:
image: kodcloud/kodbox
container_name: kodbox
ports:
- 4020:80 #左边80是使用端口可以修改
- 8001:8001
volumes:
- "./site:/var/www/html" #./site是站点目录位置可以修改
- /mnt/disk1:/mnt/disk1
- /mnt/disk2:/mnt/disk2
restart: always