Set the new Docker Hub images

This commit is contained in:
Wolfgang Huß 2020-12-22 15:52:35 +01:00
parent c37aa08450
commit 42007f17dd
4 changed files with 10 additions and 10 deletions

View File

@ -17,7 +17,7 @@ jobs:
- name: Build neo4j image - name: Build neo4j image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/neo4j repository: ocelotsocialnetwork/develop-neo4j
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: latest tags: latest
@ -25,7 +25,7 @@ jobs:
- name: Build backend base image - name: Build backend base image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/backend repository: ocelotsocialnetwork/develop-backend
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: build-and-test tags: build-and-test
@ -34,7 +34,7 @@ jobs:
- name: Build webapp base image - name: Build webapp base image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/webapp repository: ocelotsocialnetwork/develop-webapp
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: build-and-test tags: build-and-test
@ -44,7 +44,7 @@ jobs:
- name: Build backend customized image - name: Build backend customized image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/backend repository: ocelotsocialnetwork/develop-backend
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: latest tags: latest
@ -52,7 +52,7 @@ jobs:
- name: Build webapp customized image - name: Build webapp customized image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/webapp repository: ocelotsocialnetwork/develop-webapp
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: latest tags: latest

View File

@ -1,2 +1,2 @@
FROM schoolsinmotion/backend:build-and-test FROM ocelotsocialnetwork/develop-backend:build-and-test
COPY constants/links.js constants/metadata.js src/config/ COPY constants/links.js constants/metadata.js src/config/

View File

@ -2,7 +2,7 @@ version: "3.4"
services: services:
webapp: webapp:
image: schoolsinmotion/webapp:latest image: ocelotsocialnetwork/develop-webapp:latest
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
@ -17,7 +17,7 @@ services:
- PUBLIC_REGISTRATION=true - PUBLIC_REGISTRATION=true
command: yarn run dev command: yarn run dev
backend: backend:
image: schoolsinmotion/backend:latest image: ocelotsocialnetwork/develop-backend:latest
networks: networks:
- hc-network - hc-network
depends_on: depends_on:
@ -40,7 +40,7 @@ services:
- SMTP_PASSWORD=${SMTP_PASSWORD} - SMTP_PASSWORD=${SMTP_PASSWORD}
command: yarn run dev command: yarn run dev
neo4j: neo4j:
image: schoolsinmotion/neo4j:latest image: ocelotsocialnetwork/develop-neo4j:latest
networks: networks:
- hc-network - hc-network
environment: environment:

View File

@ -1,3 +1,3 @@
FROM schoolsinmotion/webapp:build-and-test FROM ocelotsocialnetwork/develop-webapp:build-and-test
COPY static/ static/ COPY static/ static/
COPY constants/ constants/ COPY constants/ constants/