mirror of
https://github.com/Gurkengewuerz/nitro-docker.git
synced 2024-11-23 00:20:52 +01:00
fix: use mysql 8 because mariadb is bugged in wsl since years
This commit is contained in:
parent
72b3a692b7
commit
9498ba724b
@ -39,7 +39,7 @@ https://git.krews.org/morningstar/Arcturus-Community/-/archive/ms4/dev/Arcturus-
|
||||
```text
|
||||
# **Default login credentials using HeidySQL:**
|
||||
# Network type: MariaDB or MySQL (TCP/IP)
|
||||
# Library: libmariadb.dll
|
||||
# Library: libmysql.dll
|
||||
# Hostname /IP: YOURSERVERIPHERE!!
|
||||
# User: arcturus_user
|
||||
# Password: arcturus_pw
|
||||
|
@ -43,8 +43,9 @@ services:
|
||||
networks: [nitro]
|
||||
|
||||
db:
|
||||
image: mariadb:10
|
||||
command: --default-authentication-plugin=mysql_native_password
|
||||
image: mysql:8
|
||||
depends_on:
|
||||
- backup
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
@ -58,13 +59,11 @@ services:
|
||||
|
||||
backup:
|
||||
image: tiredofit/db-backup
|
||||
depends_on:
|
||||
- db
|
||||
volumes:
|
||||
- ./db/backup:/backup
|
||||
environment:
|
||||
- TIMEZONE=UTC
|
||||
- DB_TYPE=mariadb
|
||||
- DB_TYPE=mysql
|
||||
- DB_HOST=db
|
||||
- DB_USER=$MYSQL_USER
|
||||
- DB_PASS=$MYSQL_PASSWORD
|
||||
|
Loading…
Reference in New Issue
Block a user