Skip to content

Commit

Permalink
Fix/issue 12532 (#12550)
Browse files Browse the repository at this point in the history
* Updating Dockerfile with multistage

* Updating reviewed changes

* Docker Development changes

* Docker workflow changes

* Arguments update

* Script path update

* Arguments update

* Resolving the reviewed suggestions

* Issue-12532 and security-scan fix

* Removing security-scan fix

* Update Dockerfile

* updating wget from curl
  • Loading branch information
Anuj359 committed Jul 21, 2023
1 parent 024c2bd commit 48cb76c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/development/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ services:
networks:
- local_app_net
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8586/healthcheck" ]
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8586/healthcheck" ]

ingestion:
build:
Expand Down
2 changes: 1 addition & 1 deletion docker/development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ services:
networks:
- local_app_net
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8586/healthcheck" ]
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8586/healthcheck" ]

ingestion:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ services:
networks:
- app_net
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8586/healthcheck" ]
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8586/healthcheck" ]

networks:
app_net:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ services:
networks:
- app_net
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8586/healthcheck" ]
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8586/healthcheck" ]

networks:
app_net:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ services:
networks:
- app_net
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8586/healthcheck" ]
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8586/healthcheck" ]

ingestion:
container_name: openmetadata_ingestion
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ services:
networks:
- app_net
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8586/healthcheck" ]
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8586/healthcheck" ]

ingestion:
container_name: openmetadata_ingestion
Expand Down

0 comments on commit 48cb76c

Please sign in to comment.