You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
545 B

version: '3.8'
services:
mysql:
image: mysql:8.0
container_name: market_data_mysql
environment:
MYSQL_ROOT_PASSWORD: postgres123
MYSQL_DATABASE: marketdata
MYSQL_USER: postgres
MYSQL_PASSWORD: postgres123
ports:
- "3306:3306"
volumes:
- mysql_data:/var/lib/mysql
command: --default-authentication-plugin=mysql_native_password
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
interval: 5s
timeout: 5s
retries: 5
volumes:
mysql_data: