From a1e4a5bf5ff158e232c135260af69cc581361e1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Thu, 29 Oct 2020 10:39:09 +0100 Subject: [PATCH] Change docker repository to develop-neo4j MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - neo4j —> develop-neo4j --- deployment/helm/human-connection/values.yaml | 2 +- deployment/human-connection/deployment-neo4j.yaml | 2 +- deployment/legacy-migration/maintenance-worker/Dockerfile | 2 +- docker-compose.yml | 2 +- scripts/docker_push.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deployment/helm/human-connection/values.yaml b/deployment/helm/human-connection/values.yaml index 4418b7371..c423104f6 100644 --- a/deployment/helm/human-connection/values.yaml +++ b/deployment/helm/human-connection/values.yaml @@ -11,7 +11,7 @@ backendImage: ocelotsocialnetwork/develop-backend # maintenanceImage is the docker image for the maintenance deployment maintenanceImage: ocelotsocialnetwork/maintenance # neo4jImage is the docker image for the neo4j deployment -neo4jImage: ocelotsocialnetwork/neo4j +neo4jImage: ocelotsocialnetwork/develop-neo4j # webappImage is the docker image for the webapp deployment webappImage: ocelotsocialnetwork/develop-webapp # image configures pullPolicy related to the docker images diff --git a/deployment/human-connection/deployment-neo4j.yaml b/deployment/human-connection/deployment-neo4j.yaml index aefe07faa..e296677b1 100644 --- a/deployment/human-connection/deployment-neo4j.yaml +++ b/deployment/human-connection/deployment-neo4j.yaml @@ -31,7 +31,7 @@ spec: - envFrom: - configMapRef: name: configmap - image: ocelotsocialnetwork/neo4j:latest + image: ocelotsocialnetwork/develop-neo4j:latest imagePullPolicy: Always name: neo4j ports: diff --git a/deployment/legacy-migration/maintenance-worker/Dockerfile b/deployment/legacy-migration/maintenance-worker/Dockerfile index e4ce3eba4..760cc06c8 100644 --- a/deployment/legacy-migration/maintenance-worker/Dockerfile +++ b/deployment/legacy-migration/maintenance-worker/Dockerfile @@ -1,4 +1,4 @@ -FROM ocelotsocialnetwork/neo4j:latest +FROM ocelotsocialnetwork/develop-neo4j:latest ENV NODE_ENV=maintenance EXPOSE 7687 7474 diff --git a/docker-compose.yml b/docker-compose.yml index fa0e2591a..7ab71aa83 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -46,7 +46,7 @@ services: - PRIVATE_KEY_PASSPHRASE=a7dsf78sadg87ad87sfagsadg78 - "DEBUG=${DEBUG}" neo4j: - image: ocelotsocialnetwork/neo4j:latest + image: ocelotsocialnetwork/develop-neo4j:latest build: context: neo4j args: diff --git a/scripts/docker_push.sh b/scripts/docker_push.sh index 37dde8fb7..e478b171c 100755 --- a/scripts/docker_push.sh +++ b/scripts/docker_push.sh @@ -10,7 +10,7 @@ tags=($major $major.$minor $major.$minor.$patch) # These three docker images have already been built by now: # docker build --build-arg BUILD_COMMIT=$BUILD_COMMIT --target production -t ocelotsocialnetwork/develop-backend:latest $ROOT_DIR/backend # docker build --build-arg BUILD_COMMIT=$BUILD_COMMIT --target production -t ocelotsocialnetwork/develop-webapp:latest $ROOT_DIR/webapp -# docker build --build-arg BUILD_COMMIT=$BUILD_COMMIT -t ocelotsocialnetwork/neo4j:latest $ROOT_DIR/neo4j +# docker build --build-arg BUILD_COMMIT=$BUILD_COMMIT -t ocelotsocialnetwork/develop-neo4j:latest $ROOT_DIR/neo4j docker build -t ocelotsocialnetwork/maintenance:latest $ROOT_DIR/webapp/ -f $ROOT_DIR/webapp/Dockerfile.maintenance echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin