Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump image versions in docker compose #1828

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ version: '3.4'
services:
mysql:
platform: linux/amd64
image: gcr.io/trillian-opensource-ci/db_server:v1.4.0
image: gcr.io/trillian-opensource-ci/db_server:v1.5.3
environment:
- MYSQL_ROOT_PASSWORD=zaphod
- MYSQL_DATABASE=test
Expand All @@ -31,7 +31,7 @@ services:
retries: 3
start_period: 10s
redis-server:
image: docker.io/redis:6.2
image: docker.io/redis:7.2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd leave this at v6 since this matches the version we use elsewhere

command: [
"--bind",
"0.0.0.0",
Expand All @@ -50,7 +50,7 @@ services:
retries: 3
start_period: 5s
trillian-log-server:
image: gcr.io/projectsigstore/trillian_log_server@sha256:f850a0defd089ea844822030c67ae05bc93c91168a7dd4aceb0b6648c39f696b
image: gcr.io/projectsigstore/trillian_log_server@sha256:0570f8561677e6140a73cb2d7e04e19cf52eb955efe40297e23402694d19489b # v1.5.3
command: [
"--quota_system=noop",
"--storage_system=mysql",
Expand All @@ -66,7 +66,7 @@ services:
depends_on:
- mysql
trillian-log-signer:
image: gcr.io/projectsigstore/trillian_log_signer@sha256:fe90d523f6617974f70878918e4b31d49b2b46a86024bb2d6b01d2bbfed8edbf
image: gcr.io/projectsigstore/trillian_log_signer@sha256:948291659bb9910708900aad33dd18669d001ea5e93b85404634bab8e38c83d7 # v1.5.3
command: [
"--quota_system=noop",
"--storage_system=mysql",
Expand Down
Loading