diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 3d63da9e3..2583ea77c 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -5,7 +5,7 @@ services: # FRONTEND ############################################# ######################################################## frontend: - image: gradido/frontend:development + # image: gradido/frontend:development build: target: development environment: @@ -22,7 +22,7 @@ services: # ADMIN INTERFACE ###################################### ######################################################## admin: - image: gradido/admin:development + # image: gradido/admin:development build: target: development environment: @@ -39,7 +39,7 @@ services: # BACKEND ############################################## ######################################################## backend: - image: gradido/backend:development + # image: gradido/backend:development build: target: development networks: @@ -65,7 +65,7 @@ services: # feel free to change this behaviour if it seems useful # 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 + # image: gradido/database:test_up build: target: test_up environment: diff --git a/docker-compose.yml b/docker-compose.yml index 213b200cd..26a1ecbe2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: # FRONTEND ############################################# ######################################################## frontend: - image: gradido/frontend:latest + # image: gradido/frontend:latest build: context: ./frontend target: production @@ -35,7 +35,7 @@ services: # ADMIN INTERFACE ###################################### ######################################################## admin: - image: gradido/admin:latest + # image: gradido/admin:latest build: context: ./admin target: production @@ -77,7 +77,7 @@ services: # BACKEND ############################################## ######################################################## backend: - image: gradido/backend:latest + # image: gradido/backend:latest build: # since we have to include the entities from ./database we cannot define the context as ./backend # this might blow build image size to the moon ?!