1
0
mirror of https://github.com/xorcare/testing-go-code-with-postgres.git synced 2025-06-30 23:23:40 +02:00

Bump postgres from 15.3-alpine3.18 to 16.3-alpine3.18

Bumps postgres from 15.3-alpine3.18 to 16.3-alpine3.18.

---
updated-dependencies:
- dependency-name: postgres
  dependency-version: 16.3-alpine3.18
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-04-30 07:42:52 +00:00
committed by github-actions[bot]
parent 8cc89ce6dd
commit 115c13e9c5

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
postgres:
image: postgres:15.3-alpine3.18
image: postgres:16.3-alpine3.18
command: postgres -c 'max_connections=1000'
environment:
POSTGRES_DB: postgres
@ -45,7 +45,7 @@ services:
- ./migrations:/migrations:ro
migrate:
image: postgres:15.3-alpine3.18
image: postgres:16.3-alpine3.18
command: echo 'All migrations have been successfully applied!'
depends_on:
postgres: