|
A few notes on the Docker environment:
MySQL (latest):
docker run --name unifiedpush -p 3306:3306 -e MYSQL_USER=unifiedpush -e MYSQL_PASSWORD=unifiedpush -e MYSQL_DATABASE=unifiedpush -e MYSQL_ROOT_PASSWORD=supersecret -d mysql
|
MariaDB (latest)
docker run --name unifiedpush -p 3306:3306 -e MYSQL_USER=unifiedpush -e MYSQL_PASSWORD=unifiedpush -e MYSQL_DATABASE=unifiedpush -e MYSQL_ROOT_PASSWORD=supersecret -d mariadb
|
Now, we need to adjust the URL to the DB connection, inside of the config.cli and liquibase.properties files. Instead of 'localhost' use the IP of your Docker (e.g. 192.168.59.103)
Runni
|