update postgresql to version 14

This commit is contained in:
grillazz 2022-05-15 14:05:43 +02:00
parent fca0606fb5
commit 7bec2ea2ec
2 changed files with 3 additions and 3 deletions

View File

@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10"]
fail-fast: false
services:
sqldb:
image: postgres:13
image: postgres:14
env:
POSTGRES_USER: user
POSTGRES_PASSWORD: secret

View File

@ -1,5 +1,5 @@
# pull official base image
FROM postgres:13-alpine
FROM postgres:14-alpine
# run create.sql on init
ADD create.sql /docker-entrypoint-initdb.d