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 #############################################
######################################################## ########################################################
frontend: frontend:
image: gradido/frontend:development # image: gradido/frontend:development
build: build:
target: development target: development
environment: environment:
@ -22,7 +22,7 @@ services:
# ADMIN INTERFACE ###################################### # ADMIN INTERFACE ######################################
######################################################## ########################################################
admin: admin:
image: gradido/admin:development # image: gradido/admin:development
build: build:
target: development target: development
environment: environment:
@ -39,7 +39,7 @@ services:
# BACKEND ############################################## # BACKEND ##############################################
######################################################## ########################################################
backend: backend:
image: gradido/backend:development # image: gradido/backend:development
build: build:
target: development target: development
networks: networks:
@ -65,7 +65,7 @@ services:
# feel free to change this behaviour if it seems useful # feel free to change this behaviour if it seems useful
# Due to problems with the volume caching the built files # Due to problems with the volume caching the built files
# we changed this to test build. This keeps the service running. # we changed this to test build. This keeps the service running.
image: gradido/database:test_up # image: gradido/database:test_up
build: build:
target: test_up target: test_up
environment: environment:

View File

@ -10,7 +10,7 @@ services:
# FRONTEND ############################################# # FRONTEND #############################################
######################################################## ########################################################
frontend: frontend:
image: gradido/frontend:latest # image: gradido/frontend:latest
build: build:
context: ./frontend context: ./frontend
target: production target: production
@ -35,7 +35,7 @@ services:
# ADMIN INTERFACE ###################################### # ADMIN INTERFACE ######################################
######################################################## ########################################################
admin: admin:
image: gradido/admin:latest # image: gradido/admin:latest
build: build:
context: ./admin context: ./admin
target: production target: production
@ -77,7 +77,7 @@ services:
# BACKEND ############################################## # BACKEND ##############################################
######################################################## ########################################################
backend: backend:
image: gradido/backend:latest # image: gradido/backend:latest
build: build:
# since we have to include the entities from ./database we cannot define the context as ./backend # 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 ?! # this might blow build image size to the moon ?!