Skip to content

Commit

Permalink
quotes on docker-compose.yml ports (#6089)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoliwang committed Feb 27, 2023
1 parent 04cbd95 commit 391c961
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
mysql:
image: 'mysql/mysql-server:latest'
ports:
- 9910:3306
- "9910:3306"
environment:
- MYSQL_DATABASE=gorm
- MYSQL_USER=gorm
Expand All @@ -13,7 +13,7 @@ services:
postgres:
image: 'postgres:latest'
ports:
- 9920:5432
- "9920:5432"
environment:
- TZ=Asia/Shanghai
- POSTGRES_DB=gorm
Expand All @@ -22,7 +22,7 @@ services:
mssql:
image: '${MSSQL_IMAGE:-mcmoe/mssqldocker}:latest'
ports:
- 9930:1433
- "9930:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=LoremIpsum86
Expand All @@ -32,5 +32,5 @@ services:
tidb:
image: 'pingcap/tidb:v6.5.0'
ports:
- 9940:4000
- "9940:4000"
command: /tidb-server -store unistore -path "" -lease 0s > tidb.log 2>&1 &

0 comments on commit 391c961

Please sign in to comment.