-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christoph Kottke
committed
Apr 15, 2024
1 parent
fd4367f
commit bddd8d0
Showing
4 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
.git/ | ||
# database contents | ||
*.sql | ||
*.sql.gz | ||
*.sql.xz | ||
*.sql.zst | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Project specific config file for MariaDB server. | ||
# Place all setting overriding the default values in here. | ||
# This file is linked to the container as a volume | ||
|
||
|
||
# InnoDB creates tables in file-per-table tablespaces by default. This behavior | ||
# is controlled by the innodb_file_per_table variable. | ||
# Disabling innodb_file_per_table causes InnoDB to create tables in the system | ||
# tablespace. | ||
[mysqld] | ||
innodb_file_per_table=ON | ||
|