Skip to content

Instantly share code, notes, and snippets.

@noosxe
Created June 6, 2025 20:17
Show Gist options
  • Save noosxe/6a457f30c639521f92bae42963ebe119 to your computer and use it in GitHub Desktop.
Save noosxe/6a457f30c639521f92bae42963ebe119 to your computer and use it in GitHub Desktop.
Makefile to control docker compose apps
.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