7adc7c00ab
Enable managed remote browser custom pages with login autofill and add website sync workflows so external admin surfaces can be handled inside SmartUp. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
19 lines
218 B
Makefile
19 lines
218 B
Makefile
COMPOSE ?= docker compose
|
|
SERVICE ?= smartup
|
|
|
|
.PHONY: up down log restart ps
|
|
|
|
up:
|
|
$(COMPOSE) up -d --build
|
|
|
|
down:
|
|
$(COMPOSE) down
|
|
|
|
log:
|
|
$(COMPOSE) logs -f --tail=200 $(SERVICE)
|
|
|
|
restart: down up
|
|
|
|
ps:
|
|
$(COMPOSE) ps
|