17 lines
430 B
YAML
17 lines
430 B
YAML
services:
|
|
mysql:
|
|
image: mysql:8.0
|
|
container_name: clawmanager-e2e-mysql
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: "123456"
|
|
MYSQL_DATABASE: "clawmanager_e2e"
|
|
ports:
|
|
- "13307:3306"
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-uroot", "-p123456"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 20
|
|
|