add pleroma

This commit is contained in:
2021-01-12 10:24:48 +00:00
parent a96cec0338
commit 7780dcce69
3 changed files with 27 additions and 0 deletions

15
pleroma/Makefile Normal file
View File

@ -0,0 +1,15 @@
NAMESPACE=alemairebe
include version
IMAGE=pleroma
push:
wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2
tar -xf pleroma-$(VERSION).tar.bz2
cd pleroma-$(VERSION)
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
--build-arg OAUTH_CONSUMER_STRATEGIES="twitter facebook google microsoft keycloak:ueberauth_keycloak_strategy" \
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) .

1
pleroma/version Normal file
View File

@ -0,0 +1 @@
VERSION=v2.2.1