forked from featherenvy/botvana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (55 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
62 lines (55 loc) · 1.17 KB
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
version: "3.9"
services:
# botvana-server:
# build:
# context: .
# dockerfile: "./botvana-server/Dockerfile"
# restart: always
# expose:
# - 7978
# -7979
# - 8080
# environment:
# RUST_LOG: debug
# ports:
# - 7979:7979
# command: cargo r --bin botvana-server
# ulimits:
# memlock:
# hard: 16477472
# soft: 16477472
# botnode:
# build:
# context: .
# dockerfile: "./botnode/Dockerfile"
# restart: always
# environment:
# BOT_ID: 0
# SERVER_ADDR: botvana-server:7978
# RUST_LOG: debug
# command: cargo r --bin botnode
# ulimits:
# memlock:
# hard: 16477472
# soft: 16477472
timescaledb:
image: timescale/timescaledb:2.5.1-pg14
restart: always
environment:
POSTGRES_USER: botvana
POSTGRES_PASSWORD: example
ports:
- 5433:5432
adminer:
image: adminer
restart: always
ports:
- 8081:8080
serum-vial:
image: tardisdev/serum-vial:latest
restart: always
environment:
POSTGRES_USER: botvana
POSTGRES_PASSWORD: example
ports:
- 8000:8000