Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1. Tag Release on GitHub for dspace and dspace-angularProvide a good tag name for the release.

2. Build Docker Images
The images could be built and pushed from the command line.

Code Block
titleBuild docker image
cd <DSPACE-SRC>
--checkout tag--
docker build -t dspace/dspace:<tag> -f Dockerfile.jdk8-test .
docker push dspace/dspace:<tag>

cd <ANGULAR-SRC>
--checkout tag--
docker build -t dspace/dspace-angular:<tag> .
docker push dspace/dspace-angular:<tag>


Or, the build could be configured on the automated build screen.
Use the same tag name for the Docker image.

...