21 lines
354 B
Makefile
21 lines
354 B
Makefile
|
.PHONY: imagePostgres
|
||
|
|
||
|
REGISTRY_IP=docker.registry
|
||
|
# linux/arm/v7
|
||
|
# linux/arm/v6
|
||
|
# linux/arm64
|
||
|
# linux/amd64
|
||
|
PLATFORM=linux/arm/v6
|
||
|
#VERBOSITY=info
|
||
|
VERBOSITY=debug
|
||
|
|
||
|
## build
|
||
|
|
||
|
imagePostgres:
|
||
|
$(shell docker-multi-arch-builder build -n postgres --platforms $(PLATFORM) -v $(VERBOSITY))
|
||
|
|
||
|
## management
|
||
|
|
||
|
status:
|
||
|
@curl -s $(REGISTRY_IP):5000/v2/_catalog | jq
|