-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
34 lines (34 loc) · 988 Bytes
/
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
version: '3'
services:
tmfserver:
image: lduriez/tmserver:latest
network_mode: host
volumes:
- ./GameData/Profiles:/opt/tmserver/GameData/Profiles
- ./GameData/Scores:/opt/tmserver/GameData/Scores
- ./GameData/Tracks/MatchSettings/:/opt/tmserver/GameData/Tracks/MatchSettings/
environment:
SERVER_NAME: My server # if you want colours be warned that $ needs to be escaped by $ in Docker
SERVER_DESC: Let's race
mysql:
image: mysql:5.5
network_mode: host
volumes:
- ./mysql:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: my_secret_pw_shh
MYSQL_DATABASE: aseco
MYSQL_USER: tmf
MYSQL_PASSWORD: tmfpass
xaseco:
image: xaseco:latest
network_mode: host
depends_on:
- "tmfserver"
- "mysql"
environment:
MYSQL_SERVER: '172.20.0.1'
MYSQL_LOGIN: tmf
MYSQL_PASSWORD: tmfpass
ASECO_MASTER_ADMIN: YOUR_TMF_LOGIN
SERVER_SA_PASSWORD: SuperAdmin