Skip to content

Commit

Permalink
Merge pull request #1500 from bakaphp/fix-docker-compose-dev
Browse files Browse the repository at this point in the history
remove max jobs
  • Loading branch information
rwhite27 authored Jun 12, 2024
2 parents 97469ff + 8765106 commit a38a141
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
dockerfile: development.Dockerfile
extra_hosts:
- 'host.docker.internal:host-gateway'
command: ["sh", "-c", "php artisan config:cache && php artisan queue:work --tries=3 --timeout=1750 --max-jobs=1000"]
command: ["sh", "-c", "php artisan config:cache && php artisan queue:work --tries=3 --timeout=1750"]
environment:
WWWUSER: '${WWWUSER}'
LARAVEL_SAIL: 1
Expand All @@ -43,7 +43,7 @@ services:
dockerfile: development.Dockerfile
extra_hosts:
- 'host.docker.internal:host-gateway'
command: ["sh", "-c", "php artisan config:cache && php artisan queue:work --queue kanvas-social --tries=3 --timeout=1750 --max-jobs=1000"]
command: ["sh", "-c", "php artisan config:cache && php artisan queue:work --queue kanvas-social --tries=3 --timeout=1750"]
environment:
WWWUSER: '${WWWUSER}'
LARAVEL_SAIL: 1
Expand All @@ -62,7 +62,7 @@ services:
dockerfile: development.Dockerfile
extra_hosts:
- 'host.docker.internal:host-gateway'
command: ["sh", "-c", "php artisan config:cache && php artisan queue:work --queue notifications --tries=3 --timeout=1750 --max-jobs=1000"]
command: ["sh", "-c", "php artisan config:cache && php artisan queue:work --queue notifications --tries=3 --timeout=1750"]
environment:
WWWUSER: '${WWWUSER}'
LARAVEL_SAIL: 1
Expand Down

0 comments on commit a38a141

Please sign in to comment.