Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Renaud Michotte edited this page Oct 13, 2025 · 20 revisions

Python 3.11

DSpace@UCLouvain

Here you'll find some information about the additions made to DSpace 7 by the Uclouvain:

  1. UCLouvain's contribution structure
  2. Authority additions
  3. Scripts
  4. DSpace Development environment setup

How to start

# Build image, tag it and deploy docker stack
cd [DSPACE_DIR]

# Build and tag image
docker build --tag test/dspace-cris -f Dockerfile .

# If we need to force to build without the cache:
# docker build --tag test/dspace-cris -f Dockerfile --no-cache .

# Run the stack
docker compose -f docker-compose-back.yml up -d

# Setup DSpace database with sample data
./scripts/setup.sh

Once the script is succeded, you could connect to the HAL browser interface using http://localhost:8080. User credentials are :

role login password
admin [email protected] admin

Requirements

  • jq shell command

Clone this wiki locally