-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
24 lines (22 loc) · 1.02 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
version: "3"
services:
server-manager:
image: assettoservermanager:latest
ports:
# the port that the server manager runs on
- "80:8772"
# the port that the assetto server runs on (may vary depending on your configuration inside server manager)
- "9600:9600"
- "9600:9600/udp"
# the port that the assetto server HTTP API runs on.
- "8081:8081"
# you may also wish to bind your configured UDP plugin ports here.
volumes:
# volume mount the entire server install so that
# content etc persists across restarts
# - ./server-install:/home/assetto/server-manager/assetto
# - ./data/config.yml:/home/assetto/server-manager/config.yml
# - ./data/server_manager:/home/assetto/server-manager/server_manager
- /mnt/disks/assetto/server-install:/home/assetto/server-manager/assetto
- /mnt/disks/assetto/data/config.yml:/home/assetto/server-manager/config.yml
- /mnt/disks/assetto/data/server_manager:/home/assetto/server-manager/server_manager