GitXplorerGitXplorer
B

mysql-testcontainers-liqui-demo

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
2c199041f38294ef4393a1a691aa70c8cda53c54

Update db schema and cat storage

BBoiarshinov committed 4 years ago
Unverified
75d85f6ca744c02de665305f249bdeb42957c0a4

Rename main class

BBoiarshinov committed 4 years ago
Unverified
1d15e5cb868015fee371107f3e96c0606d58cd8d

Initial commit

BBoiarshinov committed 4 years ago

README

The README file for this repository.

MySQL - Testcontainers - Liquibase Demo

In this project I'm trying to run mysql testcontainer with liquibase migrations in test environment.

App preparation

You should have docker (I'm using v.20.10.5 for this demo).
Run in bash (convert it to powershell if you're on windows):

 docker container run \
 -d \
 -p 3306:3306 \
 -e MYSQL_USER=user \
 -e MYSQL_DATABASE=first_schema \
 -e MYSQL_PASSWORD=pass \
 -e MYSQL_ROOT_PASSWORD=remote236 \
 --name mysql-demo mysql