Skip to content
Snippets Groups Projects
Commit e5fe9678 authored by David Trattnig's avatar David Trattnig
Browse files

fix(make): extend and improve output

parent 377fd32a
No related branches found
No related tags found
No related merge requests found
Pipeline #2969 passed
...@@ -25,13 +25,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -25,13 +25,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- ... - Extend and improve output for `make help`.
### Security ### Security
- ... - ...
## [1.0-alpha1] - 2023-02-22 ## [1.0.0-alpha1] - 2023-02-22
Initial release. Initial release.
...@@ -14,6 +14,7 @@ help:: ...@@ -14,6 +14,7 @@ help::
@echo " tns - connect to telnet server" @echo " tns - connect to telnet server"
@echo " run - start app" @echo " run - start app"
@echo " run.debug - start app in debug mode" @echo " run.debug - start app in debug mode"
@echo " release - tag and push release with current version"
@echo " docker.init - create docker volume for engine socket" @echo " docker.init - create docker volume for engine socket"
$(call docker_help) $(call docker_help)
$(call audio_help) $(call audio_help)
......
...@@ -4,17 +4,17 @@ ...@@ -4,17 +4,17 @@
# Help # Help
define docker_help define docker_help
@echo " docker.build - build docker image" @echo " docker.build - build docker image"
@echo " docker.push - push docker image" @echo " docker.push - push docker image"
@echo " docker.run - start app in container" @echo " docker.run - start app in container"
@echo " docker.run.i - start app in container (interactive mode)" @echo " docker.run.i - start app in container (interactive mode)"
@echo " docker.run.bash - start bash in container" @echo " docker.run.bash - start bash in container"
@echo " docker.run.debug - start bash and mount . into container" @echo " docker.run.debug - start bash and mount . into container"
@echo " docker.restart - restart container" @echo " docker.restart - restart container"
@echo " docker.stop - stop container" @echo " docker.stop - stop container"
@echo " docker.rm - stop and remove container" @echo " docker.rm - stop and remove container"
@echo " docker.log - container logs for app" @echo " docker.log - container logs for app"
@echo " docker.bash - enter bash in running container" @echo " docker.bash - enter bash in running container"
endef endef
# Dependencies # Dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment