Update README.md

This commit is contained in:
Marcel Schwarz 2021-01-26 17:28:14 +00:00
parent 7695a6838f
commit 190985d42c

View File

@ -25,7 +25,7 @@ docker build -t geovis-backend .
``` ```
After the build make sure you are in the same directory as "bike-data.db" resides, if so, run After the build make sure you are in the same directory as "bike-data.db" resides, if so, run
```shell ```shell
docker run -v $(pwd):/app -p 8080:80 --restart always -d test docker run -v $(pwd):/app -p 8080:80 --restart always -d geovis-backend
``` ```
Note: `$(pwd)` puts the current directory in the command, if you are on Windows, you can use WSL or provide the full path by typing it out. Note: `$(pwd)` puts the current directory in the command, if you are on Windows, you can use WSL or provide the full path by typing it out.