...
Code Block |
---|
docker run -p 5432:5432 \ -v /local_postgres_data_folder:/var/db/postgres/data \ --net=host \ --name postgres -d practiceinsight/dms_postgresql |
When we re-import Postgres data, in order to avoid data conflicts, we should stop the running Postgres container, remove the docker container, remove the postgres data folder, and launch a new Postgres docker container.
Run DMS ElasticSearch container
...