Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ repos:

# Linter and formatter
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.8
rev: v0.11.9
hooks:
- id: ruff
args:
Expand Down Expand Up @@ -85,6 +85,6 @@ repos:

# renovate.json validator
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 40.3.4
rev: 40.10.4
hooks:
- id: renovate-config-validator
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedora/python-313:20250430@sha256:4161802368be7d7016a5db77686c8bca028fbbf630577530e708b51a9af961bd AS builder
FROM quay.io/fedora/python-313:20250507@sha256:70f03189c9bc1911e6b3d89a6f8673175ad532f8da88e6a089da9d2e39c8b57d AS builder

# builder should use root to install/create all files
USER root
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ services:
- 127.0.0.1:9125:9125 # statsd

resultsdb-db: &resultsdb-db
image: docker.io/library/postgres:17.4-alpine@sha256:7062a2109c4b51f3c792c7ea01e83ed12ef9a980886e3b3d380a7d2e5f6ce3f5
image: docker.io/library/postgres:17.5-alpine@sha256:f325a29ec9deb7039c5f07761d77d79d537dac836ecd99f982f6ca5476724604
restart: always
env_file: ["docker/resultsdb-db.env"]
healthcheck:
<<: *greenwave-healthcheck
test: "pg_isready -U postgres || exit 1"

resultsdb:
image: quay.io/factory2/resultsdb:latest@sha256:62f54fe38523182766f15819d833879aa3c6b747a4b174a0bd1ef285e88ffaf9
image: quay.io/factory2/resultsdb:latest@sha256:1786f70a61d1de62b73bfb4966e4620016557c4b13e79c9f889d981e3e2525de
environment:
- GREENWAVE_LISTENERS=${GREENWAVE_LISTENERS:-1}
command: ["bash", "-c", "/start.sh"]
Expand All @@ -67,7 +67,7 @@ services:
env_file: ["docker/waiverdb-db.env"]

waiverdb:
image: quay.io/factory2/waiverdb:latest@sha256:06ca56e5939f839b5a787a530d6b59822902cc9cddfc1d9c9a51b3a6d3fc1850
image: quay.io/factory2/waiverdb:latest@sha256:0592ec955d0b4706d63041a8b19dd0d3c8f798823ef9fe55f9d8f2143e45c71a
env_file: ["docker/waiverdb.env"]
environment:
- GREENWAVE_LISTENERS=${GREENWAVE_LISTENERS:-1}
Expand Down Expand Up @@ -142,7 +142,7 @@ services:
replicas: ${GREENWAVE_LISTENERS:-1}

jaeger:
image: quay.io/jaegertracing/all-in-one:latest@sha256:6279882637ae03e70f519965d2ba5ca84cb785f4baf4f0d7237e827a37c33a42
image: quay.io/jaegertracing/all-in-one:latest@sha256:82505210a99b18f587c94f40120c2e13ef3a6ac3095eebdb9e9cba9bf5839efd
ports:
- 127.0.0.1:6831:6831/udp
- 127.0.0.1:6832:6832/udp
Expand Down
Loading