initial commit

This commit is contained in:
2020-07-29 16:01:00 +02:00
commit 21c2ec0f00
59 changed files with 1683 additions and 0 deletions

15
pgadmin4/Makefile Normal file
View File

@ -0,0 +1,15 @@
include pgadmin4/.version
pgadmin4-nopush:
docker buildx build --platform linux/amd64 --load \
--build-arg VERSION=$(VERSION) \
--build-arg GUNICORN_VERSION=$(GUNICORN_VERSION) \
--tag alemairebe/pgadmin4:$(VERSION) pgadmin4
pgadmin4:
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
--build-arg VERSION=$(VERSION) \
--build-arg GUNICORN_VERSION=$(GUNICORN_VERSION) \
--cache-from=type=registry,ref=alemairebe/pgadmin4:buildx \
--cache-to=type=registry,ref=alemairebe/pgadmin4:buildx \
--tag alemairebe/pgadmin4:$(VERSION) pgadmin4