-p PUT_HERE_ANOTHER_PORT:5000 any other desired port that will be used by the app
remove '--rm' from the command if you want to persist the container for further use; otherwise, when you stop the app, the container will be removed as well
-d makes the app to run in the background of your terminal. It does not receive input or display output. If you want the logs to be instantly shown in the terminal, remove this flag.
Note: when restarting the app, the database will be reset to initial default records. It means that if you added/updated records, they will no longer be available.