Skip to content

Commit

Permalink
chore: upgrade to postgres 12
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning committed Mar 23, 2021
1 parent 96a73f5 commit 958d788
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fider.yml
Expand Up @@ -34,7 +34,7 @@ jobs:
MINIO_ACCESS_KEY: s3user
MINIO_SECRET_KEY: s3user-s3cr3t
postgres:
image: postgres:9.6.8
image: postgres:12
env:
POSTGRES_USER: fider_ci
POSTGRES_PASSWORD: fider_ci_pw
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -8,7 +8,7 @@ services:
pgdev:
container_name: fider_pgdev
restart: always
image: postgres:9.6.8
image: postgres:12
volumes:
- ./data/postgres:/var/lib/postgresql/data
ports:
Expand All @@ -19,7 +19,7 @@ services:
pgtest:
container_name: fider_pgtest
restart: always
image: postgres:9.6.8
image: postgres:12
ports:
- "5566:5432"
environment:
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e.sh
Expand Up @@ -7,7 +7,7 @@ PORT=3000
start_fider () {
echo "Starting Fider (HOST_MODE: $1)..."
docker rm -f $FIDER_CONTAINER $PG_CONTAINER || true
docker run -d -e POSTGRES_USER=fider_e2e -e POSTGRES_PASSWORD=fider_e2e_pw --name $PG_CONTAINER postgres:9.6.8
docker run -d -e POSTGRES_USER=fider_e2e -e POSTGRES_PASSWORD=fider_e2e_pw --name $PG_CONTAINER postgres:12
docker run --link $PG_CONTAINER:pg waisbrot/wait
docker run \
-d \
Expand Down

0 comments on commit 958d788

Please sign in to comment.