For further reference, please consider the following sections:
- Install podman from https://podman.io/getting-started/installation
podman pull docker.io/library/mysql
podman run --name=mk-mysql -p3306:3306 -v mysql-volume:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:latest
podman exec -it mk-mysql bash
- This brings the bash inside docker imagemysql -h localhost -P 3306 --protocol=tcp -u root
- run this in the bash to enter into mysqlcreate database axelar
- Exit and run this program