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
Copy file name to clipboardExpand all lines: docker/README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,19 +59,19 @@ A default/demo version of this image is built *automatically*.
59
59
60
60
## To refresh / pull DSpace images from Dockerhub
61
61
```
62
-
docker-compose -f docker/docker-compose.yml pull
62
+
dockercompose -f docker/docker-compose.yml pull
63
63
```
64
64
65
65
## To build DSpace images using code in your branch
66
66
```
67
-
docker-compose -f docker/docker-compose.yml build
67
+
dockercompose -f docker/docker-compose.yml build
68
68
```
69
69
70
70
## To start DSpace (REST and Angular) from your branch
71
71
72
72
This command provides a quick way to start both the frontend & backend from this single codebase
73
73
```
74
-
docker-compose -p d8 -f docker/docker-compose.yml -f docker/docker-compose-rest.yml up -d
74
+
dockercompose -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 d8 up -d
89
+
dockercompose -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 d8 -f docker/docker-compose.yml up -d
96
+
dockercompose -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,
@@ -105,40 +105,40 @@ This allows you to run the Angular UI in *production* mode, pointing it at the d
105
105
(https://demo.dspace.org/server/ or https://sandbox.dspace.org/server/).
Load assetstore content and trigger a re-index of the repository
134
134
```
135
-
docker-compose -p d8 -f docker/cli.yml -f docker/cli.assetstore.yml run --rm dspace-cli
135
+
dockercompose -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 d8ci -f docker/docker-compose-ci.yml up -d
143
+
dockercompose -p d8ci -f docker/docker-compose-ci.yml up -d
0 commit comments