Skip to content

Commit

Permalink
Use the same container image versions as infrastructure
Browse files Browse the repository at this point in the history
Iris could not successfully restart after upgrading the
Iris server (applying security patches and rebooting)
although GitHub can successfully install and run Iris when
testing pull requests.  This is because the test environment
uses different container image versions than the Iris server.

This commit changes docker-compose.yml to use the same
container image versions that the test environment uses.
  • Loading branch information
SaiedKazemi committed Dec 18, 2023
1 parent 79caa55 commit 066dc75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3"
version: "3.4"

services:
# Web Entrypoint
Expand Down Expand Up @@ -34,7 +34,7 @@ services:

# Control-Plane & Data-Plane
clickhouse:
image: docker.io/clickhouse/clickhouse-server:22
image: docker.io/clickhouse/clickhouse-server:22.8
labels:
# ClickHouse HTTP (8123)
- traefik.http.routers.clickhouse-http.entrypoints=web
Expand All @@ -51,7 +51,7 @@ services:
- "./configuration/clickhouse/init-db.sh:/docker-entrypoint-initdb.d/init-db.sh"

postgres:
image: postgres
image: postgres:16.1
environment:
POSTGRES_USER: iris
POSTGRES_PASSWORD: iris
Expand All @@ -69,7 +69,7 @@ services:
- "traefik.tcp.routers.redis.rule=HostSNI(`*`)"

minio:
image: docker.io/minio/minio:latest
image: docker.io/minio/minio:RELEASE.2023-08-31T15-31-16Z
command: "server /data --console-address :9001"
labels:
# API
Expand Down

0 comments on commit 066dc75

Please sign in to comment.