Change docker repository to develop-neo4j

- neo4j  —>  develop-neo4j
This commit is contained in:
Wolfgang Huß 2020-10-29 10:39:09 +01:00
parent 884e876208
commit a1e4a5bf5f
5 changed files with 5 additions and 5 deletions

View File

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

View File

@ -31,7 +31,7 @@ spec:
- envFrom:
- configMapRef:
name: configmap
image: ocelotsocialnetwork/neo4j:latest
image: ocelotsocialnetwork/develop-neo4j:latest
imagePullPolicy: Always
name: neo4j
ports:

View File

@ -1,4 +1,4 @@
FROM ocelotsocialnetwork/neo4j:latest
FROM ocelotsocialnetwork/develop-neo4j:latest
ENV NODE_ENV=maintenance
EXPOSE 7687 7474

View File

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

View File

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