Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dspace-cli needs configs #555

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docker/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ services:
# __D__ => "-" (e.g. google__D__metadata => google-metadata)
# dspace.dir
dspace__P__dir: /dspace
dspace__P__server__P__url: ${REST_URL:-http://127.0.0.1:8080/server}
dspace__P__ui__P__url: ${UI_URL:-http://127.0.0.1:4000}
dspace__P__name: 'DSpace Started with Docker Compose'
# db.url: Ensure we are using the 'dspacedb' image for our database
db__P__url: 'jdbc:postgresql://dspacedb:543${INSTANCE}/dspace'
# solr.server: Ensure we are using the 'dspacesolr' image for Solr
Expand All @@ -40,6 +43,8 @@ services:
assetstore__P__s3__P__endpoint: ${S3_ENDPOINT:-}
volumes:
- "assetstore:/dspace/assetstore"
- dspace_cli_logs:/dspace/log
- ./local.cfg:/dspace/config/local.cfg
entrypoint: /dspace/bin/dspace
command: help
networks:
Expand All @@ -49,6 +54,7 @@ services:

volumes:
assetstore:
dspace_cli_logs:

networks:
dspacenet:
Loading