From 19b4311e8b5fb35043328c5690a6f5794ef1ba76 Mon Sep 17 00:00:00 2001 From: Pranav Raj S Date: Thu, 26 Dec 2019 22:04:52 +0530 Subject: [PATCH] Upgrade: Use postgres 11.6 in docker-compose (#391) --- docker-compose.production.yaml | 4 ++-- docker-compose.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker-compose.production.yaml b/docker-compose.production.yaml index d46bf08f1..037384525 100644 --- a/docker-compose.production.yaml +++ b/docker-compose.production.yaml @@ -27,7 +27,7 @@ services: command: ["bundle", "exec", "rails", "s", "-p", "3000", "-b", "0.0.0.0"] postgres: - image: postgres:9.6 + image: postgres:11.6 restart: always ports: - '5432:5432' @@ -51,4 +51,4 @@ volumes: redis: bundle: packs: - node_modules_rails: \ No newline at end of file + node_modules_rails: diff --git a/docker-compose.yaml b/docker-compose.yaml index 21f075aa8..af006154d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -38,7 +38,7 @@ services: - RAILS_ENV=development entrypoint: docker/entrypoints/rails.sh command: ["bundle", "exec", "rails", "s", "-p", "3000", "-b", "0.0.0.0"] - + webpack: <<: *base build: @@ -61,7 +61,7 @@ services: command: bin/webpack-dev-server postgres: - image: postgres:9.6 + image: postgres:11.6 restart: always ports: - '5432:5432' @@ -91,4 +91,4 @@ volumes: redis: packs: node_modules: - cache: \ No newline at end of file + cache: