Skip to content
Snippets Groups Projects
Commit 6471f3e7 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

update README

parent b063676f
Branches main
No related tags found
No related merge requests found
...@@ -10,11 +10,24 @@ Open Source Routing Machine (OSRM) with Europe Open Street Map (OSM) data. ...@@ -10,11 +10,24 @@ Open Source Routing Machine (OSRM) with Europe Open Street Map (OSM) data.
--- ---
## Use ## Use
1. Pull the image: 1. Through the command line:
> docker pull registry.git.nilu.no/fact/data/fact_road_eu:latest ```bash
docker pull registry.git.nilu.no/fact/data/fact_road_eu:latest
2. Run this data service: docker run -t -i --name fact_road_eu -p 5001:5001 -d registry.git.nilu.no/fact/data/fact_road_eu:latest
> podman run -t -i --name fact_road_eu -p 5001:5001 -d registry.git.nilu.no/fact/data/fact_road_eu:latest ```
2. Through a docker-compose file:
```yaml
version: '3.8'
services:
fact_road_eu:
image: registry.git.nilu.no/fact/data/fact_road_eu:latest
container_name: fact_road_eu
ports:
- "5001:5001"
restart: unless-stopped
```
which could be executed with `docker-compose up fact_road_eu -d`.
*** ***
## Specifications ## Specifications
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment