From e850ea55d79a74705734158fb3c2a94b0d998d6d Mon Sep 17 00:00:00 2001 From: Antonio Villagra De La Cruz Date: Wed, 28 Jun 2023 00:27:43 +0200 Subject: [PATCH] Update to postgres:14 --- Makefile | 2 +- README.md | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 0ac962c..0e7aeb2 100644 --- a/Makefile +++ b/Makefile @@ -2,4 +2,4 @@ down: docker rm postgres-analytics-service up: - docker run --name postgres-analytics-service -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=root -e POSTGRES_DB=analytics-service-db postgres:13 + docker run --name postgres-analytics-service -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=root -e POSTGRES_DB=analytics-service-db postgres:14 diff --git a/README.md b/README.md index 5823712..1cf0aeb 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,6 @@ npm install cp .env.sample .env ``` -```sh -DATABASE_URL="postgresql://root:root@localhost:5432/analytics-service-db" -``` - ```sh make up ```