# 一.安装步骤
# 1.安装 docker-compose
在服务器上安装 docker-compose
#安装
pip install docker-compose
#查看版本
docker-compose -v
1
2
3
4
5
2
3
4
5
# 2.目录准备
#创建目录
mkdir -p /kwan/clash/
#进入目录
cd /kwan/clash/
#搜索
docker search clash.meta
#创建docker-compose文件
vim docker-compose.yml
#创建文件夹,放clash配置文件
mkdir svc-clash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
# 3.配置文件
docker-compose.yml
放在/kwan/clash 目录下
version: "3"
services:
svc-clash:
image: tinyserve/clash.meta:latest
container_name: svc-clash
volumes:
- ./svc-clash/config.yaml:/root/.config/clash/config.yaml
ports:
- "17890:7890/tcp"
- "17890:7890/udp"
- "19090:9090"
restart: always
networks:
- default
svc-clash-dashboard:
image: centralx/clash-dashboard:latest
container_name: svc-clash-dashboard
ports:
- "8088:80"
restart: always
networks:
- default
networks:
default:
driver: bridge
name: svc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 4.clash 配置文件
从各种机场购买后下载,并重命名为 config.yaml
放在服务器的目录下
/kwan/clash/svc-clash/config.yaml
https://v2.666119.xyz/api/v1/client/subscribe?token=3996ecf835b2d4e8b81abaecdc966b79&flag=clashmeta
scp /Users/qinyingjie/Downloads/config.yaml root@47.107.139.237:/kwan/clash/svc-clash
1
2
3
4
5
2
3
4
5
# 二.启动
# 1.启动
#启动容器
docker-compose up -d
#查看启动情况
docker ps -a
1
2
3
4
5
2
3
4
5
# 2.停止
docker-compose down
1
# 三.注意事项
- 注意端口占用情况
- clash 不支持 vless,所以使用 clash-meta
- 注意映射出去的地址端口是 17890
- 有时候执行不成功,可能需要重启 docker
- 挂载目录不要配置错了