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
This command provides a quick way to start both the frontend & backend from this single codebase
73
73
```
74
-
docker-compose -p d7 -f docker/docker-compose.yml -f docker/docker-compose-rest.yml up -d
74
+
docker-compose -p d8 -f docker/docker-compose.yml -f docker/docker-compose-rest.yml up -d
75
75
```
76
76
77
77
Keep in mind, you may also start the backend by cloning the 'DSpace/DSpace' GitHub repository separately. See the next section.
@@ -86,14 +86,14 @@ _The system will be started in 2 steps. Each step shares the same docker network
86
86
87
87
From 'DSpace/DSpace' clone (build first as needed):
88
88
```
89
-
docker-compose -p d7 up -d
89
+
docker-compose -p d8 up -d
90
90
```
91
91
92
92
NOTE: More detailed instructions on starting the backend via Docker can be found in the [Docker Compose instructions for the Backend](https://github.com/DSpace/DSpace/blob/main/dspace/src/main/docker-compose/README.md).
93
93
94
94
From 'DSpace/dspace-angular' clone (build first as needed)
95
95
```
96
-
docker-compose -p d7 -f docker/docker-compose.yml up -d
96
+
docker-compose -p d8 -f docker/docker-compose.yml up -d
97
97
```
98
98
99
99
At this point, you should be able to access the UI from http://localhost:4000,
@@ -107,38 +107,38 @@ This allows you to run the Angular UI in *production* mode, pointing it at the d
Load assetstore content and trigger a re-index of the repository
134
134
```
135
-
docker-compose -p d7 -f docker/cli.yml -f docker/cli.assetstore.yml run --rm dspace-cli
135
+
docker-compose -p d8 -f docker/cli.yml -f docker/cli.assetstore.yml run --rm dspace-cli
136
136
```
137
137
138
138
## End to end testing of the REST API (runs in GitHub Actions CI).
139
139
_In this instance, only the REST api runs in Docker using the Entities dataset. GitHub Actions will perform CI testing of Angular using Node to drive the tests. See `.github/workflows/build.yml` for more details._
140
140
141
141
This command is only really useful for testing our Continuous Integration process.
142
142
```
143
-
docker-compose -p d7ci -f docker/docker-compose-ci.yml up -d
143
+
docker-compose -p d8ci -f docker/docker-compose-ci.yml up -d
0 commit comments