Parcourir la source

Config and test env updates

Josh Brickner il y a 7 ans
Parent
commit
13c989824d
2 fichiers modifiés avec 12 ajouts et 3 suppressions
  1. 1 1
      config.json
  2. 11 2
      docker-compose.yaml

+ 1 - 1
config.json

@@ -1,6 +1,6 @@
 {
   "host": "127.0.0.1",
-  "port": 3306,
+  "port": 3318,
   "user": "root",
   "password": "root",
   "database": "information_schema",

+ 11 - 2
docker-compose.yaml

@@ -7,7 +7,16 @@ services:
       MYSQL_DATABASE: root
     ports:
       - "3317:3306"
-    command: "--default-authentication-plugin=mysql_native_password"
+    # command: "--default-authentication-plugin=mysql_native_password"
+    restart: always
+  mysql8:
+    image: mysql:latest
+    environment:
+      MYSQL_ROOT_PASSWORD: root
+      MYSQL_DATABASE: root
+    ports:
+      - "3318:3306"
+    # command: "--default-authentication-plugin=mysql_native_password"
     restart: always
   mysql56:
     image: mysql:5.6
@@ -16,5 +25,5 @@ services:
       MYSQL_DATABASE: root
     ports:
       - "3316:3306"
-    command: "--default-authentication-plugin=mysql_native_password"
+    # command: "--default-authentication-plugin=mysql_native_password"
     restart: always