1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock # 可选,如果需要 Docker 集成功能
- ./homarr/configs:/app/data/configs
- ./homarr/icons:/app/public/icons
- ./homarr/data:/data
ports:
- '7575:7575'
dash:
container_name: dash
image: mauricenino/dashdot:latest
restart: unless-stopped
privileged: true
ports:
- '7576:3001'
volumes:
- /:/mnt/host:ro
|