We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533c284 commit caa64e1Copy full SHA for caa64e1
1 file changed
.github/workflows/github-actions.yml
@@ -39,7 +39,16 @@ jobs:
39
- shell: pwsh
40
run: |
41
./downloadBackupAndJDBCDrivers.ps1
42
- - run: docker-compose -f "./docker/docker-compose.yml" up -d
+ - name: Start databases (retry on public.ecr.aws rate limiting)
43
+ shell: bash
44
+ run: |
45
+ for i in 1 2 3 4 5; do
46
+ docker-compose -f "./docker/docker-compose.yml" up -d && exit 0
47
+ echo "compose up attempt $i failed (likely toomanyrequests); retrying in 30s..."
48
+ sleep 30
49
+ done
50
+ echo "compose up failed after 5 attempts" >&2
51
+ exit 1
52
53
54
./restoreBackup.ps1
0 commit comments