Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
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
!225
Resolve "Provide schema.org metadata for google SEO"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Provide schema.org metadata for google SEO"
303-provide-schema-org-metadata-for-google-seo-2
into
dev
Overview
0
Commits
3
Pipelines
0
Changes
6
Merged
Resolve "Provide schema.org metadata for google SEO"
Martin Weise
requested to merge
303-provide-schema-org-metadata-for-google-seo-2
into
dev
Jan 8, 2024
Overview
0
Commits
3
Pipelines
0
Changes
6
Closes #303
0
0
Merge request reports
Compare
dev
version 1
39af3092
Jan 8, 2024
dev (base)
and
latest version
latest version
7d65fdcb
3 commits,
Jan 8, 2024
version 1
39af3092
2 commits,
Jan 8, 2024
6 files
+
132
−
11
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
dbrepo-data-service/rest-service/src/test/java/at/tuwien/config/MariaDbContainerConfig.java
+
1
−
1
View file @ 7d65fdcb
Edit in single-file editor
Open in Web IDE
Show full file
@@ -33,7 +33,7 @@ public class MariaDbContainerConfig {
@@ -33,7 +33,7 @@ public class MariaDbContainerConfig {
public
static
synchronized
CustomMariaDBContainer
getInstance
()
{
public
static
synchronized
CustomMariaDBContainer
getInstance
()
{
if
(
instance
==
null
)
{
if
(
instance
==
null
)
{
instance
=
new
CustomMariaDBContainer
(
"mariadb:11.2.2
-debian-11-r0
"
);
instance
=
new
CustomMariaDBContainer
(
"mariadb:11.2.2"
);
instance
.
withImagePullPolicy
(
PullPolicy
.
alwaysPull
());
instance
.
withImagePullPolicy
(
PullPolicy
.
alwaysPull
());
instance
.
addFixedExposedPort
(
BaseTest
.
CONTAINER_1_PORT
,
BaseTest
.
IMAGE_1_PORT
);
instance
.
addFixedExposedPort
(
BaseTest
.
CONTAINER_1_PORT
,
BaseTest
.
IMAGE_1_PORT
);
instance
.
withUsername
(
BaseTest
.
CONTAINER_1_PRIVILEGED_USERNAME
);
instance
.
withUsername
(
BaseTest
.
CONTAINER_1_PRIVILEGED_USERNAME
);
Loading