-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdocker-compose.yml
60 lines (59 loc) · 1.22 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
56
57
58
59
60
services:
hyperion-proxy:
image: ghcr.io/hyperion-mc/hyperion/hyperion-proxy:latest
build:
context: .
dockerfile: Dockerfile
target: hyperion-proxy
ports:
- "25565:25565"
command: []
restart: "no"
environment:
- RUST_LOG=info
- HYPERION_PROXY_PROXY_ADDR=0.0.0.0:25565
- HYPERION_PROXY_SERVER=tag:35565
networks:
- proxy-network
depends_on:
- tag
tag:
image: ghcr.io/hyperion-mc/hyperion/tag:latest
build:
context: .
dockerfile: Dockerfile
target: tag
ports:
- "27750:27750"
expose:
- "35565"
command: []
restart: "no"
environment:
- RUST_LOG=info
- TAG_IP=0.0.0.0
- TAG_PORT=35565
networks:
- proxy-network
rust-mc-bot:
# image: ghcr.io/hyperion-mc/hyperion/rust-mc-bot:latest
build:
context: .
dockerfile: Dockerfile
target: rust-mc-bot
command: []
restart: "no"
depends_on:
- hyperion-proxy
environment:
- RUST_LOG=info
- BOT_SERVER=hyperion-proxy:25565
- BOT_BOT_COUNT=500
- BOT_THREADS=2
networks:
- proxy-network
profiles:
- bot
networks:
proxy-network:
driver: bridge