Skip to content

Docker Container Usage

Julian Harbarth edited this page Dec 15, 2022 · 7 revisions

Docker

To use the provided Docker Container follow these steps:

Pull the docker image.

docker pull ghcr.io/motis-project/soro-s:master

Please supply the required input data (Infrastructure, Timetable) in the following way:

resources/
resources/infrastructure/
resources/timetable/
resources/infrastructure/example_infrastructure_directory/
resources/timetable/example_timetable_directory/

Create a directory named 'resources' and two subdirectories named 'infrastructure' and 'timetable'. Place every infrastructure dataset in a separate directory in 'resources/infrastructure/'. Do the same for the timetable datasets.

Run the docker image and supply the required input data.

docker run -d /path/to/rescources/:/resources -p 8080:8080 ghcr.io/motis-project/soro-s:master

The webinterface is now available at localhost:8080.

Clone this wiki locally