Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Automate
Agent sessions
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Merge requests
!367
Something went wrong on our end
Resolve "Bump SeaweedFS"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Bump SeaweedFS"
477-bump-seaweedfs
into
dev
Overview
0
Commits
11
Pipelines
0
Changes
1
Merged
Resolve "Bump SeaweedFS"
Martin Weise
requested to merge
477-bump-seaweedfs
into
dev
9 months ago
Overview
0
Commits
11
Pipelines
0
Changes
1
Closes #477
0
0
Merge request reports
Viewing commit
1f44273c
Prev
Next
Show latest version
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
1f44273c
Fixed image
· 1f44273c
Martin Weise
authored
9 months ago
dbrepo-data-service/rest-service/src/test/java/at/tuwien/config/MariaDbContainerConfig.java
+
1
−
2
View file @ 1f44273c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -33,7 +33,7 @@ public class MariaDbContainerConfig {
public
static
synchronized
CustomMariaDBContainer
getInstance
()
{
if
(
instance
==
null
)
{
instance
=
new
CustomMariaDBContainer
(
"mariadb
-galera:11.1.3-debian-11-r8
"
);
instance
=
new
CustomMariaDBContainer
(
"mariadb
:11.1.3
"
);
instance
.
withImagePullPolicy
(
PullPolicy
.
alwaysPull
());
instance
.
addFixedExposedPort
(
BaseTest
.
CONTAINER_1_PORT
,
BaseTest
.
IMAGE_1_PORT
);
instance
.
withUsername
(
BaseTest
.
CONTAINER_1_PRIVILEGED_USERNAME
);
@@ -52,7 +52,6 @@ public class MariaDbContainerConfig {
protected
void
configure
()
{
super
.
configure
();
this
.
addEnv
(
"MYSQL_USER"
,
"test"
);
// MariaDB does not allow this to be root
this
.
addEnv
(
"MARIADB_GALERA_MARIABACKUP_PASSWORD"
,
"dbrepobackup"
);
}
@Override
Loading