Skip to content

Commit e85b82b

Browse files
committed
fix(compose): resolve mixed style env var declarations
1 parent b18f199 commit e85b82b

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

docker-compose.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,17 @@ services:
88
restart: on-failure
99
user: payara
1010
environment:
11-
- DATAVERSE_DB_HOST=postgres
12-
- DATAVERSE_DB_USER=${DATAVERSE_DB_USER}
13-
- DATAVERSE_DB_PASSWORD=${DATAVERSE_DB_PASSWORD}
11+
# Database Connection
1412
DATAVERSE_DB_HOST: postgres
1513
DATAVERSE_DB_USER: ${DATAVERSE_DB_USER}
1614
DATAVERSE_DB_PASSWORD: ${DATAVERSE_DB_PASSWORD}
17-
JVM_ARGS: -Ddataverse.pid.providers=fake
18-
-Ddataverse.pid.default-provider=fake
19-
-Ddataverse.pid.fake.type=FAKE
20-
-Ddataverse.pid.fake.label=FakeDOIProvider
21-
-Ddataverse.pid.fake.authority=10.5072
22-
-Ddataverse.pid.fake.shoulder=FK2/
15+
# Simple PID Provider Setup (as necessary since Dataverse 6.2)
16+
DATAVERSE_PID_PROVIDERS: fake
17+
DATAVERSE_PID_DEFAULT_PROVIDER: fake
18+
DATAVERSE_PID_FAKE_TYPE: FAKE
19+
DATAVERSE_PID_FAKE_LABEL: Fake DOI Provider
20+
DATAVERSE_PID_FAKE_AUTHORITY: 10.5072
21+
DATAVERSE_PID_FAKE_SHOULDER: FK2/
2322
ports:
2423
- '8080:8080'
2524
networks:

0 commit comments

Comments
 (0)