New command for proxy management.
This commit is contained in:
parent
bd21f130e8
commit
562a9533c7
1 changed files with 15 additions and 0 deletions
15
Makefile
15
Makefile
|
|
@ -74,6 +74,21 @@ services-logs: ## Tail all service logs
|
|||
services-ps: ## Show running containers
|
||||
docker compose --profile services ps
|
||||
|
||||
# ─────────────────────────────────────────────────────────────────────────────
|
||||
# Docker: nginx edge (reverse proxy)
|
||||
# ─────────────────────────────────────────────────────────────────────────────
|
||||
nginx-up: ## Start nginx
|
||||
docker compose --profile edge up -d --build --remove-orphans
|
||||
|
||||
nginx-down: ## Stop nginx
|
||||
docker compose --profile edge down
|
||||
|
||||
nginx-logs: ## Tail nginx logs
|
||||
docker compose --profile edge logs -f
|
||||
|
||||
nginx-ps: ## Show running containers
|
||||
docker compose --profile edge ps
|
||||
|
||||
# ─────────────────────────────────────────────────────────────────────────────
|
||||
# Individual services
|
||||
# ─────────────────────────────────────────────────────────────────────────────
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue