23 lines
551 B
Plaintext
23 lines
551 B
Plaintext
services:
|
||
# 主体服务
|
||
mihomo:
|
||
container_name: mihomo
|
||
image: metacubex/mihomo
|
||
restart: always
|
||
ports:
|
||
- "7890:7890"
|
||
- "7891:7891"
|
||
- "9090:9090"
|
||
volumes:
|
||
- ./config:/root/.config/mihomo
|
||
# - ./geoip:/etc/mihomo/geoip # 新增:挂载MMDB目录
|
||
# environment:
|
||
# - MMDB_FILE=/etc/mihomo/geoip/Country.mmdb # 新增:指定MMDB文件路径
|
||
# ui站点
|
||
metacubexd:
|
||
container_name: metacubexd
|
||
image: ghcr.io/metacubex/metacubexd
|
||
restart: always
|
||
ports:
|
||
- "8090:80"
|