Hi -
I want to install a new instance.of killbill 0.24.13. I assume that when I run
0.24.13 docker image, it would create the required mysql database schema
as a part of installing the image and startup killbill.
What I find is that when I install the docker image, it starts up killbill and mysqld
but does not create the killbill database.
Am I expected to create the database manually using the ddl.sql files in the src?
Any suggestions appreciated.
$ docker pull killbill/killbill:0.24.13
$ docker run -d -p 8080:8080 -p 3306:3306 --name killbill-0.24.13 killbill/killbill:0.24.13
$ docker exec -it mysql bash
bash-5.1# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
//...
mysql> use killbill;
ERROR 1049 (42000): Unknown database 'killbill'
mysql> show databases;+--------------------+
| Database |
+--------------------+| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.006 sec)
mysql>
Regards,
Rk