-
Notifications
You must be signed in to change notification settings - Fork 2
/
dev-compose.yml
103 lines (97 loc) · 2.11 KB
/
dev-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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
services:
sekai:
depends_on:
- syslog-ng
image: ghcr.io/kiracore/sekin/sekai:v0.3.45
restart: always
logging:
driver: syslog
options:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "sekai"
volumes:
- ./sekai:/sekai
- ./tmp:/tmp
ports:
- "26658:26658" # ABCI
- "26657:26657" # RPC
- "26656:26656" # P2P (gRPC)
- "26660:26660" # Prometheus
- "127.0.0.1:8080:8080" # RPC scaller
networks:
kiranet:
ipv4_address: 10.1.0.3
hostname: sekai.local
interx:
depends_on:
- syslog-ng
image: ghcr.io/kiracore/sekin/interx:v0.4.48
restart: always
logging:
driver: syslog
options:
syslog-address: "udp://10.1.0.2:514"
syslog-facility: local0
tag: "interx"
volumes:
- ./interx:/interx
ports:
- "11000:11000"
- "127.0.0.1:8081:8081"
networks:
kiranet:
ipv4_address: 10.1.0.4
hostname: interx.local
shidai:
depends_on:
- syslog-ng
build:
context: ./
dockerfile: shidai.Dockerfile
restart: always
ports:
- "127.0.0.1:8282:8282"
volumes:
- ./sekai:/sekai
- ./interx:/interx
- ./syslog-data:/syslog-data
- /var/run/docker.sock:/var/run/docker.sock
- ./shidai:/shidaid
- ./tmp:/tmp
networks:
kiranet:
ipv4_address: 10.1.0.5
hostname: shidai.local
syslog-ng:
build:
context: ./
dockerfile: syslog-ng.Dockerfile
restart: always
healthcheck:
test: ["CMD", "pgrep", "syslog-ng"]
interval: 10s
timeout: 5s
retries: 3
environment:
- PUID=0
- PGID=0
volumes:
- ./syslog-data:/var/log
ports:
- "514:514/udp"
- "514:514"
networks:
kiranet:
ipv4_address: 10.1.0.2
hostname: syslog-ng.local
networks:
kiranet:
name: kiranet
driver: bridge
ipam:
driver: default
config:
- subnet: 10.1.0.0/16
gateway: 10.1.0.1