This commit is contained in:
2025-09-25 11:43:59 -07:00
parent 71dbb921ff
commit d37e2abf0d
2 changed files with 76 additions and 17 deletions
-11
View File
@@ -71,17 +71,6 @@ ensure-version:
exit 1; \
fi
.PHONY: admin-run
admin-run: ensure-version ## Run the admin container locally (binds to localhost:3000)
@echo "Running admin container from image ${ADMIN_IMAGE}:${VERSION} on http://localhost:3000 ..."
docker run --name ppanel-admin-web --rm -e NEXT_PUBLIC_API_URL=https://airoport.co -p 3000:3000 ${ADMIN_IMAGE}:${VERSION}
.PHONY: user-run
user-run: ensure-version ## Run the user container locally (binds to localhost:3001)
@echo "Running user container from image ${USER_IMAGE}:${VERSION} on http://localhost:3001 ..."
docker run --name ppanel-user-web --rm -p 3001:3000 ${USER_IMAGE}:${VERSION}
# ==============================================================================
# Other Targets
# ==============================================================================