Skip to content

Commit

Permalink
Update docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhu committed Apr 30, 2022
1 parent a321cb5 commit b028264
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
mysql1:
image: 'mysql:latest'
image: 'mysql/mysql-server:latest'
ports:
- 9911:3306
environment:
Expand All @@ -11,7 +11,7 @@ services:
- MYSQL_PASSWORD=gorm
- MYSQL_RANDOM_ROOT_PASSWORD="yes"
mysql2:
image: 'mysql:latest'
image: 'mysql/mysql-server:latest'
ports:
- 9912:3306
environment:
Expand All @@ -20,7 +20,7 @@ services:
- MYSQL_PASSWORD=gorm
- MYSQL_RANDOM_ROOT_PASSWORD="yes"
mysql3:
image: 'mysql:latest'
image: 'mysql/mysql-server:latest'
ports:
- 9913:3306
environment:
Expand All @@ -29,7 +29,7 @@ services:
- MYSQL_PASSWORD=gorm
- MYSQL_RANDOM_ROOT_PASSWORD="yes"
mysql4:
image: 'mysql:latest'
image: 'mysql/mysql-server:latest'
ports:
- 9914:3306
environment:
Expand Down

0 comments on commit b028264

Please sign in to comment.