You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default is Java 11, but other LTS releases (e.g. 17) are also supported.
74
74
75
-
## Run DSpace 8 REST from your current branch
75
+
## Run DSpace 9 REST from your current branch
76
76
```
77
-
docker compose -p d8 up -d
77
+
docker compose -p d9 up -d
78
78
```
79
79
80
-
## Run DSpace 8 REST and Angular from your branch
80
+
## Run DSpace 9 REST and Angular from your branch
81
81
82
82
```
83
-
docker compose -p d8 -f docker-compose.yml -f dspace/src/main/docker-compose/docker-compose-angular.yml up -d
83
+
docker compose -p d9 -f docker-compose.yml -f dspace/src/main/docker-compose/docker-compose-angular.yml up -d
84
84
```
85
85
NOTE: This starts the UI in development mode. It will take a few minutes to see the UI as the Angular code needs to be compiled.
86
86
@@ -90,18 +90,18 @@ NOTE: This starts the UI in development mode. It will take a few minutes to see
90
90
91
91
See documentation in [DSpace User Interface Docker instructions](https://github.com/DSpace/dspace-angular/blob/main/docker/README.md#run-dspace-rest-and-dspace-angular-from-local-branches).
92
92
93
-
## Run DSpace 8 REST with a IIIF Image Server from your branch
93
+
## Run DSpace 9 REST with a IIIF Image Server from your branch
94
94
*Only useful for testing IIIF support in a development environment*
95
95
96
96
This command starts our `dspace-iiif` container alongside the REST API.
97
97
That container provides a [Cantaloupe image server](https://cantaloupe-project.github.io/),
98
98
which can be used when IIIF support is enabled in DSpace (`iiif.enabled=true`).
99
99
100
100
```
101
-
docker compose -p d8 -f docker-compose.yml -f dspace/src/main/docker-compose/docker-compose-iiif.yml up -d
101
+
docker compose -p d9 -f docker-compose.yml -f dspace/src/main/docker-compose/docker-compose-iiif.yml up -d
102
102
```
103
103
104
-
## Run DSpace 8 REST and Shibboleth SP (in Apache) from your branch
104
+
## Run DSpace 9 REST and Shibboleth SP (in Apache) from your branch
105
105
*Only useful for testing Shibboleth in a development environment*
106
106
107
107
This Shibboleth container uses https://samltest.id/ as an IdP (see `../docker/dspace-shibboleth/`).
@@ -136,17 +136,17 @@ The remainder of these instructions assume you are using ngrok (though other pro
136
136
3. Build the Shibboleth container (if you haven't built or pulled it before):
Start DSpace REST with a postgres database dump downloaded from the internet.
240
240
```
241
-
docker compose -p d8 -f docker-compose.yml -f dspace/src/main/docker-compose/db.entities.yml up -d
241
+
docker compose -p d9 -f docker-compose.yml -f dspace/src/main/docker-compose/db.entities.yml up -d
242
242
```
243
243
244
244
Download an assetstore from a tar file on the internet.
245
245
```
246
-
docker compose -p d8 -f docker-compose-cli.yml -f dspace/src/main/docker-compose/cli.assetstore.yml run dspace-cli
246
+
docker compose -p d9 -f docker-compose-cli.yml -f dspace/src/main/docker-compose/cli.assetstore.yml run dspace-cli
247
247
```
248
248
249
249
## Modify DSpace Configuration in Docker
@@ -257,20 +257,20 @@ Many DSpace configuration settings will reload automatically (after a few second
257
257
While the Docker containers are running, you can use the DSpace CLI image to run any DSpace commandline script (i.e. any command that normally can be run by `[dspace]/bin/dspace`). The general format is:
258
258
259
259
```
260
-
docker compose -p d8 -f docker-compose-cli.yml run --rm dspace-cli [command][parameters]
260
+
docker compose -p d9 -f docker-compose-cli.yml run --rm dspace-cli [command][parameters]
261
261
```
262
262
263
263
So, for example, to reindex all content in Discovery, normally you'd run `./dspace index-discovery -b` from commandline. Using our DSpace CLI image, that command becomes:
0 commit comments