From 2071312a9e439048532c47f00c44cfea66025658 Mon Sep 17 00:00:00 2001 From: ndrg13 <72130242+ndrg13@users.noreply.github.com> Date: Thu, 5 Nov 2020 19:15:49 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8c62c36..c1158dc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,16 +12,19 @@ executors: auth: username: $DOCKERHUB_LOGIN password: $DOCKERHUB_PASSWORD - - image: circleci/postgres + - image: circleci/postgres:9.6.2-alpine auth: username: $DOCKERHUB_LOGIN password: $DOCKERHUB_PASSWORD environment: - DATABASE_URL: "postgres://root@localhost:5432/psdb" - JWT_SECRET: + DATABASE_URL: "postgres://psqluser@localhost:5432/psdb" + JWT_SECRET: string API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http + POSTGRES_USER: psqluser + POSTGRES_PASSWORD: password + POSTGRES_DB: psdb jobs: build: executor: node-executor