-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove docker_local from Makefile #16335
Remove docker_local from Makefile #16335
Conversation
Signed-off-by: kirtanchandak <[email protected]>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, linked to vitessio/website#1781
Looks good to me! Happy first contribution to vitess!
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #16335 +/- ##
=======================================
Coverage 68.71% 68.71%
=======================================
Files 1547 1547
Lines 198274 198267 -7
=======================================
- Hits 136251 136247 -4
+ Misses 62023 62020 -3 ☔ View full report in Codecov by Sentry. |
Makefile
Outdated
@@ -331,9 +331,6 @@ docker_lite_all: docker_lite $(DOCKER_LITE_TARGETS) | |||
docker_lite: | |||
${call build_docker_image,docker/lite/Dockerfile,vitess/lite} | |||
|
|||
docker_local: | |||
${call build_docker_image,docker/local/Dockerfile,vitess/local} | |||
|
|||
docker_run_local: | |||
./docker/local/run.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's also remove this please, we do not need it anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this = docker_run_local
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed this too!
Signed-off-by: kirtanchandak <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be merged after vitessio/website#1781
docker_local
from makefile as instructed from the discussion -Added prerequisites to docker-install website#1777