Skip to content

🌱 Very tiny SPRING Service without Persistence - Also includes a native image build

Notifications You must be signed in to change notification settings

goafabric/callee-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

21e5220 Β· Feb 21, 2025
Jan 25, 2025
Feb 21, 2025
Jan 27, 2025
Apr 13, 2023
Feb 21, 2025
Feb 21, 2025
Feb 15, 2025
Feb 21, 2025
Apr 18, 2023
Oct 26, 2022
Nov 2, 2024
Apr 13, 2023

Repository files navigation

sonarqube

dashboard

docker compose

go to /src/deploy/docker and do "./stack up" or "./stack up -native"

run jvm multi image

docker run --pull always --name callee-service --rm -p50900:50900 goafabric/callee-service:$(grep '^version=' gradle.properties | cut -d'=' -f2)

run native image

docker run --pull always --name callee-service-native --rm -p50900:50900 goafabric/callee-service-native:$(grep '^version=' gradle.properties | cut -d'=' -f2) -Xmx32m

run native image arm

docker run --pull always --name callee-service-native --rm -p50900:50900 goafabric/callee-service-native-arm64v8:$(grep '^version=' gradle.properties | cut -d'=' -f2) -Xmx32m

native release tag

IMAGE=goafabric/callee-service-native-arm64v8; VERSION=$(grep '^version=' gradle.properties | cut -d'=' -f2); docker pull $IMAGE:$VERSION && docker tag $IMAGE:$VERSION I M A G E : {VERSION%-SNAPSHOT} && docker push I M A G E : {VERSION%-SNAPSHOT}