Added name to docker run command

This commit is contained in:
Abel Fokkinga 2021-12-31 15:41:54 +01:00
parent f5ea5c533e
commit fc07accb49
Signed by: abel
GPG Key ID: B84FADF9AF5B8D90

View File

@ -13,5 +13,5 @@ Update the API key token in the config.json file
For building and running the app via Docker
```
docker build -t ecb:latest .
docker run -d -p 5000:5000 ecb
docker run -d --name ecb -p 5000:5000 ecb:latest
```