-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.yml
56 lines (49 loc) · 1.07 KB
/
docker-compose.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: "3"
services:
ssr:
image: orvice/shadowsocksr
restart: always
volumes:
- ./ssr/config.json:/usr/src/app/config.json
- ./log/ssr:/var/log/ssr
env_file:
- mu.env
logging:
driver: json-file
options:
max-size: "200k"
max-file: "10"
network_mode: host
v2ray:
image: v2ray/official
restart: always
volumes:
- ./v2ray:/etc/v2ray
- ./log/v2ray:/var/log/v2ray
ports:
- 8300:8300
- 8300:8300/udp
command: ["v2ray", "-config=/etc/v2ray/config.json"]
v2ray-mu:
image: orvice/v2ray-mu
restart: always
volumes:
- ./log/v2ray-mu:/var/log/v2ray-mu
logging:
driver: json-file
options:
max-size: "200k"
max-file: "10"
env_file:
- mu.env
monitor-client:
image: orvice/monitor-client
restart: always
volumes:
- ./monitor_client_log:/var/log
environment:
- NET_INTERFACE=eth0
- WEB_ADDR=:8080
- GRPC_ADDR=:8090
container_name: monitor-client
network_mode: host