Skip to content

Commit d049a62

Browse files
authored
Merge pull request #12 from gdcc/alpha-image-as-default
Set `alpha` as default
2 parents d418af3 + aa56ab0 commit d049a62

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# IDE folders
2+
.idea/

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ runs:
103103
version=$(curl -s 'http://localhost:8080/api/info/version' | jq -r '.data.version')
104104
echo "dv_version=$version" >>"$GITHUB_OUTPUT"
105105
106-
echo "::endgroup::"
106+
echo "::endgroup::"

docker-compose.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +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
12+
DATAVERSE_DB_HOST: postgres
13+
DATAVERSE_DB_USER: ${DATAVERSE_DB_USER}
14+
DATAVERSE_DB_PASSWORD: ${DATAVERSE_DB_PASSWORD}
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/
1422
ports:
1523
- '8080:8080'
1624
networks:

0 commit comments

Comments
 (0)