diff --git a/docker/db.entities.yml b/docker/db.entities.yml
index d1dfdf4a26..6473bf2e38 100644
--- a/docker/db.entities.yml
+++ b/docker/db.entities.yml
@@ -25,7 +25,7 @@ services:
### OVERRIDE default 'entrypoint' in 'docker-compose-rest.yml' ####
# Ensure that the database is ready BEFORE starting tomcat
# 1. While a TCP connection to dspacedb port 5432 is not available, continue to sleep
- # 2. Then, run database migration to init database tables
+ # 2. Then, run database migration to init database tables (including any out-of-order ignored migrations, if any)
# 3. (Custom for Entities) enable Entity-specific collection submission mappings in item-submission.xml
# This 'sed' command inserts the sample configurations specific to the Entities data set, see:
# https://github.com/DSpace/DSpace/blob/main/dspace/config/item-submission.xml#L36-L49
@@ -35,7 +35,7 @@ services:
- '-c'
- |
while (! /dev/null 2>&1; do sleep 1; done;
- /dspace/bin/dspace database migrate
+ /dspace/bin/dspace database migrate ignored
sed -i '/name-map collection-handle="default".*/a \\n \
\
\
diff --git a/docker/docker-compose-ci.yml b/docker/docker-compose-ci.yml
index 3bd8f52630..dbe9500499 100644
--- a/docker/docker-compose-ci.yml
+++ b/docker/docker-compose-ci.yml
@@ -46,14 +46,14 @@ services:
- solr_configs:/dspace/solr
# Ensure that the database is ready BEFORE starting tomcat
# 1. While a TCP connection to dspacedb port 5432 is not available, continue to sleep
- # 2. Then, run database migration to init database tables
+ # 2. Then, run database migration to init database tables (including any out-of-order ignored migrations, if any)
# 3. Finally, start Tomcat
entrypoint:
- /bin/bash
- '-c'
- |
while (! /dev/null 2>&1; do sleep 1; done;
- /dspace/bin/dspace database migrate
+ /dspace/bin/dspace database migrate ignored
catalina.sh run
# DSpace database container
# NOTE: This is customized to use our loadsql image, so that we are using a database with existing test data