deepanprabhu / axelar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Commands

Setup MySQL Docker image

  • 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 image
  • mysql -h localhost -P 3306 --protocol=tcp -u root - run this in the bash to enter into mysql
  • create database axelar - Exit and run this program

About

License:MIT License


Languages

Language:Java 100.0%