-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#217] Add centos 7 / mariadb 10.6 project
Linked to #217 because all Centos 7 projects will be removed in the near future.
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
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
34 changes: 34 additions & 0 deletions
34
projects/centos-7/centos-7-mariadb-10.6/docker-compose.yml
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,34 @@ | ||
version: '3' | ||
|
||
services: | ||
catalog: | ||
image: mariadb:10.6 | ||
environment: | ||
- MARIADB_ROOT_PASSWORD=testpassword | ||
- MARIADB_USER=irods | ||
- MARIADB_PASSWORD=testpassword | ||
# For parity with mysql 8.0, we use utf8mb4 charset and utf8mb4_bin collation (for case sensitivity), and disable the binary log | ||
command: "--transaction-isolation=READ-COMMITTED --character-set-server=utf8mb4 --collation-server=utf8mb4_bin --disable-log-bin" | ||
|
||
irods-catalog-provider: | ||
build: | ||
context: .. | ||
dockerfile: ${dockerfile} | ||
depends_on: | ||
- catalog | ||
volumes: | ||
- shared_volume:/irods_testing_environment_mount_dir | ||
|
||
irods-catalog-consumer: | ||
build: | ||
context: .. | ||
dockerfile: ${dockerfile} | ||
depends_on: | ||
- irods-catalog-provider | ||
volumes: | ||
- shared_volume:/irods_testing_environment_mount_dir | ||
|
||
# This volume is mounted on all test servers for detached mode testing which | ||
# requires a common vault. | ||
volumes: | ||
shared_volume: |