Skip to content

Commit 33b9c90

Browse files
authored
Merge pull request #5835 from opsmill/jbr-fix-docker-compose-version
fix docker compose version
2 parents 1a0b164 + 89f4a7e commit 33b9c90

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ services:
174174
- 6362:6362
175175

176176
task-manager:
177-
image: "${INFRAHUB_DOCKER_IMAGE:-registry.opsmill.io/opsmill/infrahub}:${VERSION:-1.1.4}"
177+
image: "${INFRAHUB_DOCKER_IMAGE:-registry.opsmill.io/opsmill/infrahub}:${VERSION:-1.2.0rc0}"
178178
command: uvicorn --host 0.0.0.0 --port 4200 --factory infrahub.prefect_server.app:create_infrahub_prefect
179179
restart: unless-stopped
180180
depends_on:
@@ -207,7 +207,7 @@ services:
207207
retries: 5
208208

209209
infrahub-server:
210-
image: "${INFRAHUB_DOCKER_IMAGE:-registry.opsmill.io/opsmill/infrahub}:${VERSION:-1.1.8a1}"
210+
image: "${INFRAHUB_DOCKER_IMAGE:-registry.opsmill.io/opsmill/infrahub}:${VERSION:-1.2.0rc0}"
211211
restart: unless-stopped
212212
command: >
213213
gunicorn --config backend/infrahub/serve/gunicorn_config.py
@@ -253,7 +253,7 @@ services:
253253
deploy:
254254
mode: replicated
255255
replicas: 2
256-
image: "${INFRAHUB_DOCKER_IMAGE:-registry.opsmill.io/opsmill/infrahub}:${VERSION:-1.1.8a1}"
256+
image: "${INFRAHUB_DOCKER_IMAGE:-registry.opsmill.io/opsmill/infrahub}:${VERSION:-1.2.0rc0}"
257257
command: prefect worker start --type infrahubasync --pool infrahub-worker --with-healthcheck
258258
restart: unless-stopped
259259
depends_on:

tasks/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def update_docker_compose(context: Context, docker_file: str | None = "docker-co
163163
docker_yaml: dict = yaml.load(docker_path)
164164

165165
# Define services to update
166-
services_to_update = ["infrahub-server", "task-worker"]
166+
services_to_update = ["infrahub-server", "task-worker", "task-manager"]
167167
updates_made = False
168168

169169
# Iterate over the services and update their image versions

0 commit comments

Comments
 (0)