feat: adjust static-gtfs-manager

This commit is contained in:
dancingCycle 2022-06-05 08:30:32 +02:00
parent a7155fa489
commit 1304c3bff1
1 changed files with 14 additions and 0 deletions

View File

@ -22,3 +22,17 @@ docker push <user>/static-gtfs-manager:<tag>
```
# Deployment
Refer to
[issue](https://github.com/WRI-Cities/static-GTFS-manager/issues/165)
for a discussion about why it is not possible to run a Docker image that is pulled from a Docker repository on a Server.
Call the following instruction set to build and run locally.
```
cd
git clone git@github.com:WRI-Cities/static-GTFS-manager.git
cd static-GTFS-manager
docker build -t static-gtfs-manager .
docker run --rm -it -p 5000:5000 -v "$(pwd)":/app static-gtfs-manager
```