Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. TODO Add instructions for installing aws-cli

  2. TODO How to get AWS secret Key

  3. Configure your AWS profile: aws configure --profile sunwave-dev

  4. Log into aws docker registry where wack-o-mole database is: aws ecr get-login-password --region us-east-1 --profile sunwave-dev | docker login --username AWS --password-stdin 517729021141.dkr.ecr.us-east-1.amazonaws.com

  5. Pull and run the wack-o-mole image: docker run --platform linux/amd64 -p 3306:3306 --name sunwave-mysql --network sunwave -e MYSQL_ROOT_PASSWORD=Welcome1 -d 517729021141.dkr.ecr.us-east-1.amazonaws.com/sunwave-mysql:1.0.0-SNAPSHOT --lower_case_table_names=1

  6. Verify the mysql database container is up and running: docker logs sunwave-mysql

...