Remove 'image' entries in 'docker-compose.override.yml' and 'docker-compose.yml' files

This commit is contained in:
Wolfgang Huß 2022-07-12 18:56:13 +02:00
parent 0e1dc8c632
commit 741370fdbc
2 changed files with 7 additions and 7 deletions

View File

@ -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:

View File

@ -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 ?!