Created
June 6, 2025 20:17
-
-
Save noosxe/6a457f30c639521f92bae42963ebe119 to your computer and use it in GitHub Desktop.
Makefile to control docker compose apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: launch | |
launch: | |
docker compose -f compose.yml up -d | |
.PHONY: stop | |
stop: | |
docker compose -f compose.yml down | |
.PHONY: logs | |
logs: | |
docker compose -f compose.yml logs -f | |
.PHONY: status | |
status: | |
docker compose -f compose.yml ps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment