From b5ea12f4a773c949cd8d472a9e9b941b2d5e16ca Mon Sep 17 00:00:00 2001 From: Elliot Matson Date: Sun, 28 Nov 2021 14:17:29 +0000 Subject: [PATCH] Added highlighting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 95602b9..6b87e91 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Resolve still uses a legacy feature that has been removed in PostgreSQL 12, so t ### Setting up a PostgreSQL 11 Project Server To setup a PostgreSQL 11 server instead of 9.5, there are 2 lines that need to be changed in docker_compose.yml: -``` +```yaml services: postgres: image: postgres:9.5 @@ -57,7 +57,7 @@ services: ... ``` to the following: -``` +```yaml services: postgres: image: postgres:11