Skip to content

Commit

Permalink
remove wait-for-it timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienBtr committed Nov 29, 2020
1 parent 513a499 commit c4bef5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generator/generators/app/templates/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
app:
build: .
command: sh -c "./wait-for-it.sh -t 15 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
command: sh -c "./wait-for-it.sh -t 0 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
volumes:
- /app/node_modules
- /app/generated/prisma-client
Expand Down
2 changes: 1 addition & 1 deletion services/article/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
app:
build: .
command: sh -c "./wait-for-it.sh -t 15 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
command: sh -c "./wait-for-it.sh -t 0 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
volumes:
- /app/node_modules
- /app/generated/prisma-client
Expand Down
2 changes: 1 addition & 1 deletion services/cart/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
app:
build: .
command: sh -c "./wait-for-it.sh -t 15 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
command: sh -c "./wait-for-it.sh -t 0 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
volumes:
- /app/node_modules
- /app/generated/prisma-client
Expand Down
2 changes: 1 addition & 1 deletion services/user/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
app:
build: .
command: sh -c "./wait-for-it.sh -t 15 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
command: sh -c "./wait-for-it.sh -t 0 prisma:4466 --strict -- prisma generate && prisma deploy && yarn lint-check && yarn ${ENV:-dev}"
volumes:
- /app/node_modules
- /app/generated/prisma-client
Expand Down

0 comments on commit c4bef5e

Please sign in to comment.