Skip to content

Commit f220499

Browse files
authored
feat: update image (#1023)
1 parent a0a3d09 commit f220499

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,17 @@ endif
121121
.PHONY: compose-up compose-down compose-logs compose-infra
122122
# Full application startup
123123
compose-up:
124-
VERSION=v0.5.0-alpha.30 DOCRAY_VERSION=v0.1.1 $(_EXTRA_ENVS) docker-compose --profile app $(_PROFILES_TO_ACTIVATE) -f docker-compose.yml up -d
124+
VERSION=v0.5.0-alpha.31 DOCRAY_VERSION=v0.1.1 $(_EXTRA_ENVS) docker-compose --profile app $(_PROFILES_TO_ACTIVATE) -f docker-compose.yml up -d
125125

126126
# Infrastructure only (databases + supporting services)
127127
compose-infra:
128-
VERSION=v0.5.0-alpha.30 DOCRAY_VERSION=v0.1.1 docker-compose $(_PROFILES_TO_ACTIVATE) -f docker-compose.yml up -d
128+
VERSION=v0.5.0-alpha.31 DOCRAY_VERSION=v0.1.1 docker-compose $(_PROFILES_TO_ACTIVATE) -f docker-compose.yml up -d
129129

130130
compose-down:
131-
VERSION=v0.5.0-alpha.30 DOCRAY_VERSION=v0.1.1 docker-compose --profile app --profile docray --profile docray-gpu --profile neo4j -f docker-compose.yml down $(_COMPOSE_DOWN_FLAGS)
131+
VERSION=v0.5.0-alpha.31 DOCRAY_VERSION=v0.1.1 docker-compose --profile app --profile docray --profile docray-gpu --profile neo4j -f docker-compose.yml down $(_COMPOSE_DOWN_FLAGS)
132132

133133
compose-logs:
134-
VERSION=v0.5.0-alpha.30 DOCRAY_VERSION=v0.1.1 docker-compose -f docker-compose.yml logs -f
134+
VERSION=v0.5.0-alpha.31 DOCRAY_VERSION=v0.1.1 docker-compose -f docker-compose.yml logs -f
135135

136136
##################################################
137137
# Development Services

deploy/aperag/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image:
22
repository: "docker.io/apecloud/aperag" # Full image name including registry
3-
tag: "v0.5.0-alpha.30"
3+
tag: "v0.5.0-alpha.31"
44
pullPolicy: IfNotPresent
55

66
nameOverride: ""
@@ -255,7 +255,7 @@ frontend:
255255
replicaCount: 1
256256
image:
257257
repository: "docker.io/apecloud/aperag-frontend" # Full image name including registry
258-
tag: "v0.5.0-alpha.30"
258+
tag: "v0.5.0-alpha.31"
259259
pullPolicy: IfNotPresent
260260
resources: {}
261261
# We usually recommend not to specify default resources and to leave this as a conscious

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
build:
1515
context: .
1616
dockerfile: ./Dockerfile
17-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.30}
17+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.31}
1818
container_name: aperag-api
1919
depends_on:
2020
redis:
@@ -43,7 +43,7 @@ services:
4343
build:
4444
context: ./frontend
4545
dockerfile: ./Dockerfile
46-
image: ${REGISTRY:-docker.io}/apecloud/aperag-frontend:${VERSION:-v0.5.0-alpha.30}
46+
image: ${REGISTRY:-docker.io}/apecloud/aperag-frontend:${VERSION:-v0.5.0-alpha.31}
4747
container_name: aperag-frontend
4848
depends_on:
4949
- api
@@ -57,7 +57,7 @@ services:
5757
profiles: ["app"]
5858

5959
celeryworker:
60-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.30}
60+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.31}
6161
build:
6262
context: .
6363
dockerfile: ./Dockerfile
@@ -82,7 +82,7 @@ services:
8282
profiles: ["app"]
8383

8484
celerybeat:
85-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.30}
85+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.31}
8686
build:
8787
context: .
8888
dockerfile: ./Dockerfile
@@ -100,7 +100,7 @@ services:
100100

101101
flower:
102102
<<: *api
103-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.30}
103+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.31}
104104
build:
105105
context: .
106106
dockerfile: ./Dockerfile

0 commit comments

Comments
 (0)