quotes on docker-compose.yml ports (#6089)

This commit is contained in:
Jiepeng Cao 2023-02-27 15:39:02 +08:00 committed by GitHub
parent 04cbd956eb
commit 391c961c7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ services:
mysql:
image: 'mysql/mysql-server:latest'
ports:
- 9910:3306
- "9910:3306"
environment:
- MYSQL_DATABASE=gorm
- MYSQL_USER=gorm
@ -13,7 +13,7 @@ services:
postgres:
image: 'postgres:latest'
ports:
- 9920:5432
- "9920:5432"
environment:
- TZ=Asia/Shanghai
- POSTGRES_DB=gorm
@ -22,7 +22,7 @@ services:
mssql:
image: '${MSSQL_IMAGE:-mcmoe/mssqldocker}:latest'
ports:
- 9930:1433
- "9930:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=LoremIpsum86
@ -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 &