Skip to content

Commit

Permalink
ANother try
Browse files Browse the repository at this point in the history
  • Loading branch information
rberezen committed Dec 7, 2024
1 parent 19e667d commit 4b4ae29
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions src/test/resources/docker/create-infra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ case $db in
exit 0
;;

# informix needs a bit more time to start
"informix")
docker compose up -d $db
sleep 60
;;

# standard startup
*)
docker compose up -d $db
Expand Down
6 changes: 0 additions & 6 deletions src/test/resources/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -355,12 +355,6 @@ services:
privileged: true
volumes:
- "./informix-init.sql:/opt/ibm/config/informix-init.sql"
healthcheck:
test: ["CMD-SHELL", "echo 'SELECT 1 FROM systables;' | dbaccess testdb > /dev/null 2>&1"]
interval: 10s
timeout: 5s
retries: 6
start_period: 30s

# Titan (https://titan-data.io) is managing these images for our CI/CD process. If you want to run them locally you'll have to
# populate init script (hsqldb-init.sql) for this platform manually or install titan and pull image pre-populated with data
Expand Down

0 comments on commit 4b4ae29

Please sign in to comment.