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

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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