From 15ecc04bf39a6c815cdc166b67af1e7aeb5c5dad Mon Sep 17 00:00:00 2001 From: Pierre Fontaine Date: Mon, 18 Jan 2021 09:49:24 +0100 Subject: [PATCH] :fire: Remove docker container run command. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f8caac..f239af9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,8 @@ jobs: POSTGRES_DB: psqluer POSTGRES_USER: myUsr POSTGRES_PASSWORD: somePwd + POSTGRES_PORT: 5432 + DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/psqluer working_directory: ~/repo steps: - checkout @@ -25,8 +27,6 @@ jobs: environment: FLASK_APP: /home/circleci/repo/autoapp.py FLASK_DEBUG: 0 - DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr - POSTGRES_PORT: 5432 command: flask db upgrade workflows: