Merge pull request #9926 from sinanmohd/pin_postgres

chore(docker): pin postgresql to 16.6
This commit is contained in:
navi
2024-11-30 06:24:45 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -609,7 +609,7 @@ EOF
if [ "$CONFIG_POSTGRES_SQLITE" = "P" ]; then
cat >>"$compose_file" <<EOF
db:
image: postgres:16.1
image: postgres:16.6
env_file: docker.env
volumes:
- ./postgres:/var/lib/postgresql/data

View File

@@ -22,7 +22,7 @@ services:
retries: 10
test: "pg_isready -U \"$$POSTGRES_USER\" -d \"$$POSTGRES_DB\""
timeout: 2s
image: postgres
image: postgres:16.6
restart: always
volumes:
- "db_data:/var/lib/postgresql/data"