Skip to content
This repository was archived by the owner on Jan 27, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 472 Bytes

File metadata and controls

23 lines (15 loc) · 472 Bytes

This is modified from docker-omeka. I tried to use the official Docker Dockerfiles as a reference.

Commands

make

docker run --name dspace-postgresql \
  -e POSTGRES_PASSWORD=mysecretpassword -d postgres

docker run --name dspace-app \
  --link dspace-postgresql:postgresql \
  -p 8080:8080 \
  -d dspace

Or for review:

docker exec -t -i dspace-app /bin/bash

To reset the app:

docker stop dspace-app && docker rm dspace-app