-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdocker-compose.yaml
57 lines (55 loc) · 1.35 KB
/
docker-compose.yaml
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
services:
proxy:
platform: linux/amd64
image: jitolabs/jito-shredstream-proxy
command: shredstream
environment:
- RUST_LOG=info
- BLOCK_ENGINE_URL=https://amsterdam.mainnet.block-engine.jito.wtf
- AUTH_KEYPAIR=auth.json
- DESIRED_REGIONS=amsterdam,ny,tokio,frankfurt,slc
- DEST_IP_PORTS=0.0.0.0:8001
volumes:
- ./auth.json:/app/auth.json
network_mode: host
shreds:
image: piotrostr/shreds
platform: linux/amd64
build:
context: .
dockerfile: Dockerfile
container_name: shreds
command: ["./shreds", "graduates-mode"]
volumes:
- type: bind
source: ./raydium.json
target: /raydium.json
- type: bind
source: ./shreds.log
target: /shreds.log
- .env:/.env
- ./FAST.json:/FAST.json
ports:
- "8001:8001/udp"
network_mode: host
cli:
image: piotrostr/shreds
platform: linux/amd64
build:
context: .
dockerfile: Dockerfile
volumes:
- type: bind
source: ./raydium.json
target: /raydium.json
- type: bind
source: ./shreds.log
target: /shreds.log
- type: bind
source: ./packets.json
target: /packets.json
- .env:/.env
- ./FAST.json:/FAST.json
command: ["./shreds", "--help"]
ports:
- "8001:8001/udp"