Commits
Tim Donohue authored 113703ff6b0
12 12 | networks |
13 13 | dspacenet |
14 14 | services |
15 15 | dspace-angular |
16 16 | container_name dspace-angular |
17 17 | environment |
18 18 | DSPACE_UI_SSL 'false' |
19 19 | DSPACE_UI_HOST dspace-angular |
20 20 | DSPACE_UI_PORT '4000' |
21 21 | DSPACE_UI_NAMESPACE / |
22 + | # NOTE: When running the UI in production mode (which the -dist image does), |
23 + | # these DSPACE_REST_* variables MUST point at a public, HTTPS URL. |
24 + | # This is because Server Side Rendering (SSR) currently requires a public URL, |
25 + | # see this bug: https://github.com/DSpace/dspace-angular/issues/1485 |
22 26 | DSPACE_REST_SSL 'true' |
23 27 | DSPACE_REST_HOST api7.dspace.org |
24 28 | DSPACE_REST_PORT 443 |
25 29 | DSPACE_REST_NAMESPACE /server |
26 30 | image dspace/dspace-angular dspace-7_x-dist |
27 31 | build |
28 32 | context .. |
29 33 | dockerfile Dockerfile.dist |
30 34 | networks |
31 35 | dspacenet |