Skip to content

Commit 9b534b2

Browse files
entrypoint was missing executable permissions, compose.yaml was missing a volume definition (#38)
1 parent e2e3920 commit 9b534b2

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

compose.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@ services:
3838
REPORTING_GATEKEEPER_USERNAME: ${REPORTING_GATEKEEPER_USERNAME}
3939
REPORTING_GATEKEEPER_PASSWORD: ${REPORTING_GATEKEEPER_PASSWORD}
4040
REPORTING_BACKEND_CORS_ORIGINS: ${REPORTING_BACKEND_CORS_ORIGINS}
41+
42+
volumes:
43+
user_reports:

entrypoint.sh

100644100755
Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,6 @@ sed -i -e "s/PGU/${REPORTING_POSTGRES_USER}/g" -e "s/PGP/${REPORTING_POSTGRES_PA
5151
echo "Starting db migrations"
5252

5353
alembic upgrade head
54-
#exit_code=$?
55-
#count=0
56-
#
57-
#while [[ "${exit_code}" -ne 0 && "${count}" -lt 5 ]]
58-
#do
59-
# count=$((count+1))
60-
# echo "${count}"
61-
#
62-
# alembic upgrade head
63-
#
64-
# exit_code=$?
65-
# sleep 2
66-
#done
6754

6855
echo "Finished db migrations"
6956

0 commit comments

Comments
 (0)