Added name to docker run command

This commit is contained in:
2021-12-31 15:41:54 +01:00
parent f5ea5c533e
commit fc07accb49

View File

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