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.
15 lines
348 B
15 lines
348 B
version: "3"
|
|
|
|
services:
|
|
mariadb:
|
|
image: mariadb:10.6.4-focal
|
|
#image: mysql:8.0.27
|
|
restart: unless-stopped
|
|
command: '--default-authentication-plugin=mysql_native_password'
|
|
volumes:
|
|
- ./db_data:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=
|
|
- MYSQL_DATABASE=
|
|
- MYSQL_USER=
|
|
- MYSQL_PASSWORD= |