Skip to content

Commit

Permalink
Support for arm64 image
Browse files Browse the repository at this point in the history
  • Loading branch information
seachicken committed Jan 19, 2025
1 parent 39e1208 commit 11359a9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/kotlin/inga/intellijinga/IngaService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class IngaService(
) {
companion object {
const val INGA_IMAGE_NAME = "ghcr.io/seachicken/inga"
const val INGA_IMAGE_TAG = "0.27.1-java"
const val INGA_IMAGE_TAG = "0.28.0-java"
const val INGA_UI_IMAGE_NAME = "ghcr.io/seachicken/inga-ui"
const val INGA_UI_IMAGE_TAG = "0.10.6"
const val INGA_SYNC_IMAGE_NAME = "ghcr.io/seachicken/inga-sync"
Expand Down Expand Up @@ -262,7 +262,6 @@ class IngaService(
client
.pullImageCmd(INGA_IMAGE_NAME)
.withTag(INGA_IMAGE_TAG)
.withPlatform("linux/amd64")
.exec(object : PullImageResultCallback() {
override fun onNext(item: PullResponseItem?) {
super.onNext(item)
Expand Down Expand Up @@ -347,7 +346,6 @@ class IngaService(
.createContainerCmd("$INGA_IMAGE_NAME:$INGA_IMAGE_TAG")
.withName(ingaContainerName)
.withStdinOpen(true)
.withPlatform("linux/amd64")
.withHostConfig(
HostConfig.newHostConfig()
.withBinds(binds)
Expand Down

0 comments on commit 11359a9

Please sign in to comment.