From 4025c4aff9c35f7dcbd3d70a11e0ab6ae0d38a16 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 2 Oct 2021 12:33:17 +0200 Subject: [PATCH] run database in test mode when in development mode --- docker-compose.override.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docker-compose.override.yml b/docker-compose.override.yml index fda88943d..d14ce50f5 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -43,11 +43,13 @@ services: # DATABASE ############################################## ######################################################## database: - # we always run on prouction here since else the service lingers + # we always run on production here since else the service lingers # feel free to change this behaviour if it seems useful - #image: gradido/database:test_up - #build: - # target: test_up + # Due to problems with the volume caching the built files + # we changed this to test build. This keeps the service running. + image: gradido/database:test_up + build: + target: test_up #networks: # - external-net # - internal-net