fix(docker-compose): pin diesel version to v2.3.5 in migration runner (#11093)

This commit is contained in:
Shailesh
2026-02-10 16:35:17 +05:30
committed by GitHub
parent 3763380a48
commit c3a38fca78

View File

@@ -62,7 +62,7 @@ services:
command: >
bash -c "
apt-get update && apt-get install -y curl xz-utils &&
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/diesel-rs/diesel/releases/latest/download/diesel_cli-installer.sh | bash &&
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/diesel-rs/diesel/releases/download/v2.3.5/diesel_cli-installer.sh | bash &&
if ! command -v just >/dev/null 2>&1; then
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin
fi &&