From 13bd22657c2eae4d5d544113cc800b33cb0e3b11 Mon Sep 17 00:00:00 2001 From: ryluth <38672086+ryluth@users.noreply.github.com> Date: Sat, 28 Sep 2019 12:04:20 +0200 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index b1bb3a8..f90b141 100644 --- a/README.md +++ b/README.md @@ -64,3 +64,18 @@ Other configuration options are listed below: - $LAPS_NBLAPS | number of laps for laps mode -> Default : 5 - $LAPS_TIMELIMIT | time limit in milliseconds for laps mode -> Default : 0 ``` + +### Running custom tracks +You can run custom tracks by mounting a volume from where your tracks are stored to `/opt/tmserver/GameData/Tracks/Challenges/Custom`. + +In this example i am storing my tracks in `./tracks` relative to the docker-compose file. + +``` +[...] + tmserver: + image: fanyx/tmserver:latest + [...] + volumes: + - ./tracks:/opt/tmserver/GameData/Tracks/Challenges/Custom +[...] +```