From 283bf80e61db47f1fc99dc9c13ac623b47b80798 Mon Sep 17 00:00:00 2001 From: Mart van Santen <mart@greenhost.nl> Date: Fri, 26 Nov 2021 07:30:30 +0100 Subject: [PATCH] Fix hash --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a218d30..a7d79c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -134,13 +134,13 @@ behave-integration: - name: ${CI_REGISTRY_IMAGE}/login:${CI_COMMIT_REF_NAME} alias: login variables: - FLASK_RUN_HOST=0.0.0.0 - FLASK_RUN_PORT=5000 - HYDRA_ADMIN_URL=http://hydra:4445 - KRATOS_PUBLIC_URL=http://kratos:4433 - KRATOS_ADMIN_URL=http://kratos:4434 - PUBLIC_URL=http://localhost:5000/ - DATABASE_URL="postgresql://postgres:postgres@localhost/postgres" + FLASK_RUN_HOST: 0.0.0.0 + FLASK_RUN_PORT: 5000 + HYDRA_ADMIN_URL: http://hydra:4445 + KRATOS_PUBLIC_URL: http://kratos:4433 + KRATOS_ADMIN_URL: http://kratos:4434 + PUBLIC_URL: http://localhost:5000/ + DATABASE_URL: "postgresql://postgres:postgres@localhost/postgres" variables: # Feature Flag FF_NETWORK_PER_BUILD Enables creation of a docker network per build # with the docker executor of the gitlab-runner. This is required for service -- GitLab