-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-backend-new.yml
48 lines (41 loc) · 1.09 KB
/
docker-compose-backend-new.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
version: '3.8'
services:
bot_wars_engine:
image: stanislawmalinski/bot-wars-engine:latest
ports:
- "7177:7177"
depends_on:
- bot_wars_db
bot_wars_filegatherer:
image: stanislawmalinski/bot-wars-filegatherer:latest
ports:
- "7002:8080"
volumes:
- file_gatherer:/app/Storage
bot_wars_db:
image: "mcr.microsoft.com/mssql/server:2022-latest"
ports:
- "1433:1433"
environment:
SA_PASSWORD: "Sqlhaslo123!"
ACCEPT_EULA: "Y"
MSSQL_PID: "Evaluation"
volumes:
- bot_wars_db:/var/lib/mssql
bot_wars_api:
image: stanislawmalinski/bot-wars-api:latest
ports:
- "8080:8080"
- "8081:8081"
depends_on:
- bot_wars_db
restart: always
volumes:
bot_wars_db:
driver: local
file_gatherer:
driver: local
driver_opts:
type: none
o: bind
device: FileGatherer/Storage