Commit 4bb7ce409b6c6eb59d596aa0a0b57a8e5f643566

Authored by Neenad Ingole
1 parent 4e023233
Exists in master

Add mysql 8 standalone

Showing 1 changed file with 12 additions and 0 deletions   Show diff stats
mysql/standalone/docker-compose.yml 0 → 100644
... ... @@ -0,0 +1,12 @@
  1 +version: "3.9"
  2 +
  3 +services:
  4 + mysql:
  5 + image: mysql:8
  6 + ports:
  7 + - "3306:3306"
  8 + environment:
  9 + MYSQL_ROOT_PASSWORD: secret
  10 + MYSQL_USER: mysqluser
  11 + MYSQL_PASSWORD: mysqlpw
  12 + MYSQL_DATABASE: inventory
... ...