Files
cloudron-garage/Makefile
Matt Jadud a83fa0714b Updates
Improves a few things, but not many changes of substance.
2025-12-06 17:55:03 -05:00

20 lines
390 B
Makefile

SHELL:=/bin/bash
VERSION?=v2.1.0
IMAGE?=garage:latest
DOMAIN?=garage
templates:
VERSION="${VERSION}" DOMAIN="${DOMAIN}" ./process-templates.bash
build: templates
cloudron build
install: build uninstall
cloudron install \
--location "${DOMAIN}" \
--secondary-domains \
GARAGE_WEB="web.${DOMAIN}",GARAGE_ADMIN="admin.${DOMAIN}"
uninstall:
cloudron uninstall --app "${DOMAIN}"