mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-16 22:43:12 +00:00
Updates to Docker configuration for Angular CLI and port 4000
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
- Sets the environment used across containers run with docker-compose
|
||||
- docker-compose-angular.yml
|
||||
- Docker compose file that will start a published DSpace angular container that interacts with the branch.
|
||||
- environment.dev.js
|
||||
- environment.dev.ts
|
||||
- Default angular environment when testing DSpace-angular from this repo
|
||||
|
||||
## To refresh / pull DSpace images from Dockerhub
|
||||
|
@@ -17,17 +17,17 @@ services:
|
||||
environment:
|
||||
DSPACE_HOST: dspace-angular
|
||||
DSPACE_NAMESPACE: /
|
||||
DSPACE_PORT: '3000'
|
||||
DSPACE_PORT: '4000'
|
||||
DSPACE_SSL: "false"
|
||||
image: dspace/dspace-angular:latest
|
||||
networks:
|
||||
dspacenet: {}
|
||||
ports:
|
||||
- published: 3000
|
||||
target: 3000
|
||||
- published: 4000
|
||||
target: 4000
|
||||
- published: 9876
|
||||
target: 9876
|
||||
stdin_open: true
|
||||
tty: true
|
||||
volumes:
|
||||
- ./dspace/src/main/docker-compose/environment.dev.js:/app/config/environment.dev.js
|
||||
- ./dspace/src/main/docker-compose/environment.dev.ts:/app/src/environments/environment.dev.ts
|
||||
|
@@ -5,7 +5,9 @@
|
||||
*
|
||||
* http://www.dspace.org/license/
|
||||
*/
|
||||
module.exports = {
|
||||
import { GlobalConfig } from '../src/config/global-config.interface';
|
||||
|
||||
export const environment: Partial<GlobalConfig> = {
|
||||
rest: {
|
||||
ssl: false,
|
||||
host: 'localhost',
|
@@ -1,5 +1,6 @@
|
||||
dspace.dir=/dspace
|
||||
db.url=jdbc:postgresql://dspacedb:5432/dspace
|
||||
dspace.server.url=http://localhost:8080/server
|
||||
dspace.ui.url=http://localhost:4000
|
||||
dspace.name=DSpace Started with Docker Compose
|
||||
solr.server=http://dspacesolr:8983/solr
|
||||
|
@@ -5,4 +5,5 @@
|
||||
dspace.dir = /dspace
|
||||
db.url = jdbc:postgresql://dspacedb:5432/dspace
|
||||
dspace.server.url=http://localhost:8080/server
|
||||
dspace.ui.url=http://localhost:4000
|
||||
solr.server=http://dspacesolr:8983/solr
|
||||
|
Reference in New Issue
Block a user