docker compose up --build -d
Its bound to 0.0.0.0:8080 for ease; So you should find it at:
127.0.0.1:8080
First find the db container with
docker ps
Then go to mysql in the container and login with the adinmo user.
docker exec -it {container_name} mysql -u adinmo -pPassword123!
or
docker exec -it adinmo-test-db-1 mysql -u adinmo -pPassword123!
The 2 tables you can query are post_batch
and random_number
USE adinmo_test_db
SELECT * FROM post_batch;
SELECT * FROM random_number;