Chore: Update PostgreSQL version to 12 (#1034)

Fixes: #1031
This commit is contained in:
Sojan Jose 2020-07-14 11:36:31 +05:30 committed by GitHub
parent 6ede64cb6b
commit 7483796a14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 13 deletions

View file

@ -37,17 +37,7 @@
} }
}, },
"image": "heroku/ruby", "image": "heroku/ruby",
"addons": [ "addons": [ "heroku-redis", "heroku-postgresql"],
{
"plan": "heroku-redis"
},
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"buildpacks": [ "buildpacks": [
{ {
"url": "heroku/ruby" "url": "heroku/ruby"

View file

@ -39,7 +39,7 @@ services:
command: ['bundle', 'exec', 'sidekiq', '-C', 'config/sidekiq.yml'] command: ['bundle', 'exec', 'sidekiq', '-C', 'config/sidekiq.yml']
postgres: postgres:
image: postgres:11.6 image: postgres:12
restart: always restart: always
ports: ports:
- '5432:5432' - '5432:5432'

View file

@ -82,7 +82,7 @@ services:
command: bin/webpack-dev-server command: bin/webpack-dev-server
postgres: postgres:
image: postgres:11.6 image: postgres:12
restart: always restart: always
ports: ports:
- '5432:5432' - '5432:5432'