Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Mautsch committed Mar 22, 2024
1 parent 6f98fe5 commit e76260d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
go to /src/deploy/docker and do "./stack up" or "./stack up -native"

# run jvm multi image
docker run --pull always --name core-service --rm -p50800:50800 goafabric/core-service:1.2.4-SNAPSHOT
docker run --pull always --name core-service --rm -p50800:50800 goafabric/core-service:1.2.4

# run native image
docker run --pull always --name core-service-native --rm -p50800:50800 goafabric/core-service-native:1.2.4-SNAPSHOT -Xmx64m
docker run --pull always --name core-service-native --rm -p50800:50800 goafabric/core-service-native:1.2.4 -Xmx64m

# run native image arm
docker run --pull always --name core-service-native --rm -p50800:50800 goafabric/core-service-native-arm64v8:1.2.4-SNAPSHOT -Xmx64m
docker run --pull always --name core-service-native --rm -p50800:50800 goafabric/core-service-native-arm64v8:1.2.4 -Xmx64m

# auth-server
docker run --name auth-server --rm -p30200:30200 goafabric/spring-auth-server-native:1.0.2 -Xmx32m
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.springframework.boot.gradle.tasks.bundling.BootBuildImage

group = "org.goafabric"
version = "1.2.4-SNAPSHOT"
version = "1.2.4"
java.sourceCompatibility = JavaVersion.VERSION_21

val dockerRegistry = "goafabric"
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/docker/.values
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_Values_root_name="core-service"

_Values_image_repository=goafabric/core-service
_Values_image_tag=1.2.4-SNAPSHOT
_Values_image_tag=1.2.4

_Values_service_port=50800
_Values_resources_requests_memory=64M
Expand Down

0 comments on commit e76260d

Please sign in to comment.