Skip to content

Commit

Permalink
Merge branch 'db-race'
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiolaverde0 committed Jan 20, 2024
2 parents 5100466 + d2baa4f commit 517c712
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
image: ghcr.io/simjanos-dev/linguacafe-webserver:main
container_name: linguacafe-webserver
depends_on:
mysql
- mysql
volumes:
- /your/linguacafe/dict/folder:/var/www/html/storage/app/dictionaries
- /your/linguacafe/logs/folder:/var/www/html/storage/logs
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

retry_count=0

while [ $retry_count -lt 12 ] && ! "php artisan migrate"; do
while [ $retry_count -lt 12 ] && ! php artisan migrate; do
sleep 15
retry_count=$((retry_count+1))
done
Expand Down

0 comments on commit 517c712

Please sign in to comment.