24 lines
455 B
YAML
24 lines
455 B
YAML
version: '3.3'
|
|
services:
|
|
api:
|
|
build: .
|
|
environment:
|
|
IS_DOCKER_COMPOSE: '1'
|
|
ports:
|
|
- '8080:8080'
|
|
volumes:
|
|
- .:/app/dtm
|
|
mysql:
|
|
image: 'mysql:5.7'
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: my-secret-pw
|
|
TZ: Asia/shanghai
|
|
command:
|
|
[
|
|
'--character-set-server=utf8mb4',
|
|
'--collation-server=utf8mb4_unicode_ci',
|
|
'--default-time-zone=+8:00',
|
|
]
|
|
ports:
|
|
- '3306:3306'
|