sqlite -> mariadb migration for nextcloud
This commit is contained in:
parent
5852ba9925
commit
dec9bc3d15
2 changed files with 16 additions and 1 deletions
|
|
@ -39,5 +39,21 @@ services:
|
|||
networks:
|
||||
- cloud
|
||||
|
||||
mariadb:
|
||||
image: mariadb:10.11
|
||||
container_name: nextcloud_db
|
||||
restart: always
|
||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||
networks:
|
||||
- cloud
|
||||
volumes:
|
||||
- ./mariadb:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
||||
- MYSQL_DATABASE=${MYSQL_DATABASE}
|
||||
- MYSQL_USER=${MYSQL_USER}
|
||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||
|
||||
|
||||
networks:
|
||||
cloud:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue