@@ -36,7 +36,7 @@ services:
3636 dspace__P__server__P__url : ${REST_URL:-http://127.0.0.1:8080/server}
3737 dspace__P__ui__P__url : ${UI_URL:-http://127.0.0.1:4000}
3838 # db.url: Ensure we are using the 'dspacedb' image for our database
39- db__P__url : ' jdbc:postgresql://dspacedb :${PG_PORT}/dspace'
39+ db__P__url : ' jdbc:postgresql://pgcit17.vsb.cz :${PG_PORT}/dspace'
4040 # solr.server: Ensure we are using the 'dspacesolr' image for Solr
4141 solr__P__server : http://dspacesolr:${SOLR_PORT}/solr
4242 # proxies.trusted.ipranges: This setting is required for a REST API running in Docker to trust requests
@@ -54,8 +54,6 @@ services:
5454 assetstore__P__s3__P__pathStyleAccessEnabled : ${S3_PATH_STYLE_ACCESS:-false}
5555 assetstore__P__s3__P__endpoint : ${S3_ENDPOINT:-}
5656 image : ${DSPACE_REST_IMAGE:-dataquest/dspace:dtq-dev-7.5}
57- depends_on :
58- - dspacedb
5957 networks :
6058 - dspacenet
6159 ports :
@@ -103,28 +101,7 @@ services:
103101 # /dspace/bin/dspace database migrate force
104102 # /dspace/bin/start-handle-server
105103 - |
106- while (!</dev/tcp/dspacedb/${PG_PORT}) > /dev/null 2>&1; do sleep 1; done;
107104 ./custom_run.sh
108- # DSpace database container
109- dspacedb :
110- restart : unless-stopped
111- container_name : dspacedb${DSPACE_PORT}
112- environment :
113- TZ : ${TIMEZONE:-Europe/Bratislava}
114- PGDATA : /pgdata
115- POSTGRES_PASSWORD : dspace
116- image : ${DSPACE_DB_IMAGE:-dataquest/dspace-postgres-pgcrypto:dspace-7_x}
117- networks :
118- dspacenet :
119- ports :
120- - published : ${PG_PORT}
121- target : ${PG_PORT}
122- host_ip : ${HOST_IP:-127.0.0.1}
123- stdin_open : true
124- tty : true
125- volumes :
126- - pgdata:/pgdata
127- command : -p ${PG_PORT}
128105 # DSpace Solr container
129106 dspacesolr :
130107 environment :
@@ -167,7 +144,6 @@ services:
167144volumes :
168145 # Commented out because there are a lot of files in the assetstore
169146 assetstore :
170- pgdata :
171147 solr_data :
172148 # Special volume used to share Solr configs from 'dspace' to 'dspacesolr' container (see above)
173149 dspace_logs :
0 commit comments