@@ -36,18 +36,18 @@ services:
3636 # dspace__P__ui__P__url: http://localhost:4000
3737 # Set SSR URL to the Docker container name so that UI can contact container directly in Production mode.
3838 # (This is necessary for docker-compose-dist.yml)
39- dspace__P__server__P__ssr__P__url : http://dspace:8080/server
40- dspace__P__name : ' DSpace Started with Docker Compose'
39+ dspace__P__server__P__ssr__P__url : ${dspace__P__server__P__ssr__P__url:- http://dspace:8080/server}
40+ dspace__P__name : ${dspace__P__name:- DSpace Started with Docker Compose}
4141 # db.url: Ensure we are using the 'dspacedb' image for our database
42- db__P__url : ' jdbc:postgresql://dspacedb:5432/dspace'
42+ db__P__url : ${db__P__url:- jdbc:postgresql://dspacedb:5432/dspace}
4343 # solr.server: Ensure we are using the 'dspacesolr' image for Solr
44- solr__P__server : http://dspacesolr:8983/solr
44+ solr__P__server : ${solr__P__server:- http://dspacesolr:8983/solr}
4545 # matomo.tracker.url: Ensure we are using the 'matomo' image for Matomo
46- matomo__P__tracker__P__url : http://matomo
46+ matomo__P__tracker__P__url : ${matomo__P__tracker__P__url:- http://matomo}
4747 # proxies.trusted.ipranges: This setting is required for a REST API running in Docker to trust requests
4848 # from the host machine. This IP range MUST correspond to the 'dspacenet' subnet defined above.
49- proxies__P__trusted__P__ipranges : ' 172.23.0'
50- LOGGING_CONFIG : /dspace/config/log4j2-container.xml
49+ proxies__P__trusted__P__ipranges : ${proxies__P__trusted__P__ipranges:- 172.23.0}
50+ LOGGING_CONFIG : ${LOGGING_CONFIG:- /dspace/config/log4j2-container.xml}
5151 image : " ${DOCKER_REGISTRY:-docker.io}/${DOCKER_OWNER:-dspace}/dspace:${DSPACE_VER:-latest-test}"
5252 depends_on :
5353 - dspacedb
0 commit comments