Skip to content

Commit 0530b7d

Browse files
in docker-compose, pin redis version to 8 & postgres version to 16
1 parent 21883b5 commit 0530b7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
# https://docs.sourcebot.dev/docs/configuration/environment-variables
2929

3030
postgres:
31-
image: docker.io/postgres:${POSTGRES_VERSION:-17}
31+
image: docker.io/postgres:${POSTGRES_VERSION:-16}
3232
restart: always
3333
healthcheck:
3434
test: ["CMD-SHELL", "pg_isready -U postgres"]
@@ -45,7 +45,7 @@ services:
4545
- sourcebot_postgres_data:/var/lib/postgresql/data
4646

4747
redis:
48-
image: docker.io/redis:${REDIS_VERSION:-latest}
48+
image: docker.io/redis:${REDIS_VERSION:-8}
4949
restart: always
5050
ports:
5151
- 127.0.0.1:6379:6379

0 commit comments

Comments
 (0)