chore: Update Makefile targets for local building and git update shorthand

This commit is contained in:
Logan Cusano
2026-07-13 00:16:50 -04:00
parent cc9af6ff26
commit 9addce7716
+8 -2
View File
@@ -8,9 +8,9 @@ setup:
test: test:
docker compose run --no-deps --rm edge-node pytest -v docker compose run --no-deps --rm edge-node pytest -v
# Build all images locally and start. # Build all images locally and start (dev mode with local code mounted).
up: up:
docker compose up -d docker compose up -d --build
# Pull pre-built images from the registry and start (no local build). # Pull pre-built images from the registry and start (no local build).
# Requires IMAGE_REGISTRY, DOCKER_ORG, DOCKER_REPO set in .env. # Requires IMAGE_REGISTRY, DOCKER_ORG, DOCKER_REPO set in .env.
@@ -21,6 +21,12 @@ up-prebuilt:
pull: pull:
docker compose pull docker compose pull
# Helper to pull the latest git commits and rebuild/restart the dev stack.
update-git:
git pull
docker compose build
docker compose up -d
down: down:
docker compose down docker compose down