docker run -d --name postgres -p 5432:5432 -e "POSTGRES_PASSWORD=mysecretpassword" postgres:9.6.9docker exec -it postgres psql -U postgres -wThen copy and paste the content of the file ./dao/src/main/resources/scommons/admin/dao/changelog/createDb.sql
Exit the psql console by typing \q and then enter.
docker exec -it postgres psql -U admin_admin -w -d admin_dbThen paste the content of the file ./dao/src/main/resources/scommons/admin/dao/changelog/initialSql.sql
Exit the psql console by typing \q and then enter.
The following script will crate test user with test password and SUPERUSER access
docker exec -it postgres psql -U admin_admin -w -d admin_dband paste the content of the file ./server/src/it/resources/test_data.sql
Exit the psql console by typing \q and then enter.