-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.help
More file actions
51 lines (49 loc) · 1.39 KB
/
Makefile.help
File metadata and controls
51 lines (49 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Help content for Makefile targets
HELP_BUILD = "Build the Docker image:"
HELP_RUN = "Run the Docker container (supports credential JSON files and environment variables):"
HELP_RUN_IT = "Run the Docker container interactively:"
HELP_EXEC = "Exec into the running container:"
HELP_LOG = "View the container logs:"
HELP_CLEAN = "Delete the running container:"
HELP_TEST = "Run the validation tests:"
HELP_DEV_PIPELINE = "Run the development pipeline:"
# Help target
help:
@echo ""
@echo "Usage:"
@echo ""
@echo "$(HELP_BUILD)"
@echo "make build"
@echo ""
@echo "$(HELP_RUN)"
@echo "make run"
@echo ""
@echo "$(HELP_RUN_IT)"
@echo "make run-it"
@echo ""
@echo "$(HELP_EXEC)"
@echo "make exec"
@echo ""
@echo "$(HELP_LOG)"
@echo "make log"
@echo ""
@echo "$(HELP_CLEAN)"
@echo "make clean"
@echo ""
@echo "$(HELP_TEST)"
@echo "make test"
@echo ""
@echo "$(HELP_DEV_PIPELINE)"
@echo "make dev-pipeline"
@echo ""
@echo "Variables:"
@echo " IMAGE_NAME (default: $(IMAGE_NAME))"
@echo " TAG (default: $(TAG))"
@echo " CONTAINER_NAME (default: $(CONTAINER_NAME))"
@echo " TEST_WORKER_CONFIG (default: $(TEST_WORKER_CONFIG))"
@echo " VOLUMES (default: $(VOLUMES))"
@echo " DEBUG (default: $(DEBUG))"
@echo " COMMAND (default: $(COMMAND))"
@echo " MULTIPLATFORM (default: $(MULTIPLATFORM))"
@echo " DOCKER_IMAGE (default: $(DOCKER_IMAGE))"
@echo " FOLLOW_LOGS (default: $(FOLLOW_LOGS))"