@@ -22,18 +22,18 @@ services:
2222 # dspace__P__ui__P__url: http://localhost:4000
2323 # Set SSR URL to the Docker container name so that UI can contact container directly in Production mode.
2424 # (This is necessary for docker-compose-angular.yml as it uses production mode by default)
25- dspace__P__server__P__ssr__P__url : http://dspace:8080/server
26- dspace__P__name : ' DSpace Started with Docker Compose'
25+ dspace__P__server__P__ssr__P__url : ${dspace__P__server__P__ssr__P__url:- http://dspace:8080/server}
26+ dspace__P__name : ${dspace__P__name:- DSpace Started with Docker Compose}
2727 # db.url: Ensure we are using the 'dspacedb' image for our database
28- db__P__url : ' jdbc:postgresql://dspacedb:5432/dspace'
28+ db__P__url : ${db__P__url:- jdbc:postgresql://dspacedb:5432/dspace}
2929 # solr.server: Ensure we are using the 'dspacesolr' image for Solr
30- solr__P__server : http://dspacesolr:8983/solr
30+ solr__P__server : ${solr__P__server:- http://dspacesolr:8983/solr}
3131 # matomo.tracker.url: Ensure we are using the 'matomo' image for Matomo
32- matomo__P__tracker__P__url : http://matomo
32+ matomo__P__tracker__P__url : ${matomo__P__tracker__P__url:- http://matomo}
3333 # proxies.trusted.ipranges: This setting is required for a REST API running in Docker to trust requests
3434 # from the host machine. This IP range MUST correspond to the 'dspacenet' subnet defined above.
35- proxies__P__trusted__P__ipranges : ' 172.23.0'
36- LOGGING_CONFIG : /dspace/config/log4j2-container.xml
35+ proxies__P__trusted__P__ipranges : ${proxies__P__trusted__P__ipranges:- 172.23.0}
36+ LOGGING_CONFIG : ${LOGGING_CONFIG:- /dspace/config/log4j2-container.xml}
3737 image : " ${DOCKER_REGISTRY:-docker.io}/${DOCKER_OWNER:-dspace}/dspace:${DSPACE_VER:-latest-test}"
3838 build :
3939 context : .
0 commit comments