From f5c4cd77013a323ecddc6f653dd1df787f43b1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Fri, 15 Jul 2022 09:29:59 +0200 Subject: [PATCH] Replace in docker compose 'ocelotsocialnetwork/*:latest' by 'ocelotsocialnetwork/*:local-production' --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a75e65883..d71a9e947 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: # WEBAPP ############################################### ######################################################## webapp: - # image: ocelotsocialnetwork/webapp:latest + image: ocelotsocialnetwork/webapp:local-production build: context: ./webapp target: production @@ -40,7 +40,7 @@ services: # BACKEND ############################################## ######################################################## backend: - # image: ocelotsocialnetwork/backend:latest + image: ocelotsocialnetwork/backend:local-production build: context: ./backend target: production @@ -73,7 +73,7 @@ services: # NEO4J ################################################ ######################################################## neo4j: - # image: ocelotsocialnetwork/neo4j:latest + image: ocelotsocialnetwork/neo4j:local-production build: context: ./neo4j # community edition 👆🏼, because we have no enterprise licence 👇🏼 at the moment @@ -97,7 +97,7 @@ services: # MAINTENANCE ########################################## ######################################################## maintenance: - # image: ocelotsocialnetwork/maintenance:latest + image: ocelotsocialnetwork/maintenance:local-production build: # TODO: Separate from webapp, this must be independent context: ./webapp