Remove all humanconnection dockerhub repos
I'm experiencing non-determinstic behaviour when I configure a repsitory which does not exist on dockerhub or is not part of the schoolsinmotion organization. Therefore I'm going to use a tag `bare` for the base images.
This commit is contained in:
parent
722b7bf687
commit
b93489fe14
21
.github/workflows/cd.yml
vendored
21
.github/workflows/cd.yml
vendored
@ -17,22 +17,22 @@ jobs:
|
|||||||
- name: Build neo4j base image
|
- name: Build neo4j base image
|
||||||
uses: docker/build-push-action@v1.1.0
|
uses: docker/build-push-action@v1.1.0
|
||||||
with:
|
with:
|
||||||
repository: humanconnection/neo4j
|
repository: schoolsinmotion/neo4j
|
||||||
tags: latest
|
tags: bare
|
||||||
path: Human-Connection/neo4j/
|
path: Human-Connection/neo4j/
|
||||||
push: false
|
push: false
|
||||||
- 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: humanconnection/nitro-backend
|
repository: schoolsinmotion/nitro-backend
|
||||||
tags: latest
|
tags: bare
|
||||||
path: Human-Connection/backend/
|
path: Human-Connection/backend/
|
||||||
push: false
|
push: false
|
||||||
- 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: humanconnection/nitro-web
|
repository: schoolsinmotion/nitro-web
|
||||||
tags: latest
|
tags: bare
|
||||||
path: Human-Connection/webapp/
|
path: Human-Connection/webapp/
|
||||||
push: false
|
push: false
|
||||||
|
|
||||||
@ -44,8 +44,7 @@ jobs:
|
|||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
tags: latest
|
tags: latest
|
||||||
path: neo4j/
|
path: neo4j/
|
||||||
cache_from: humanconnection/neo4j:latest
|
push: true
|
||||||
push: false
|
|
||||||
- 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:
|
||||||
@ -54,8 +53,7 @@ jobs:
|
|||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
tags: latest
|
tags: latest
|
||||||
path: backend/
|
path: backend/
|
||||||
cache_from: humanconnection/backend:build-and-test
|
push: true
|
||||||
push: false
|
|
||||||
- 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:
|
||||||
@ -64,5 +62,4 @@ jobs:
|
|||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
tags: latest
|
tags: latest
|
||||||
path: webapp/
|
path: webapp/
|
||||||
cache_from: humanconnection/webapp:build-and-test
|
push: true
|
||||||
push: false
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
FROM humanconnection/backend:build-and-test
|
FROM schoolsinmotion/backend:bare
|
||||||
|
|||||||
@ -5,7 +5,6 @@ services:
|
|||||||
image: schoolsinmotion/webapp:latest
|
image: schoolsinmotion/webapp:latest
|
||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- 3000:3000
|
||||||
- 3002:3002
|
|
||||||
networks:
|
networks:
|
||||||
- hc-network
|
- hc-network
|
||||||
depends_on:
|
depends_on:
|
||||||
@ -31,7 +30,6 @@ services:
|
|||||||
- JWT_SECRET=b/&&7b78BF&fv/Vd
|
- JWT_SECRET=b/&&7b78BF&fv/Vd
|
||||||
- MAPBOX_TOKEN=pk.eyJ1IjoiaHVtYW4tY29ubmVjdGlvbiIsImEiOiJjajl0cnBubGoweTVlM3VwZ2lzNTNud3ZtIn0.KZ8KK9l70omjXbEkkbHGsQ
|
- MAPBOX_TOKEN=pk.eyJ1IjoiaHVtYW4tY29ubmVjdGlvbiIsImEiOiJjajl0cnBubGoweTVlM3VwZ2lzNTNud3ZtIn0.KZ8KK9l70omjXbEkkbHGsQ
|
||||||
- PRIVATE_KEY_PASSPHRASE=a7dsf78sadg87ad87sfagsadg78
|
- PRIVATE_KEY_PASSPHRASE=a7dsf78sadg87ad87sfagsadg78
|
||||||
- "DEBUG=${DEBUG}"
|
|
||||||
- EMAIL_SUPPORT=support@human-connection.org
|
- EMAIL_SUPPORT=support@human-connection.org
|
||||||
- EMAIL_DEFAULT_SENDER=info@human-connection.org
|
- EMAIL_DEFAULT_SENDER=info@human-connection.org
|
||||||
- PUBLIC_REGISTRATION=true
|
- PUBLIC_REGISTRATION=true
|
||||||
@ -46,6 +44,5 @@ services:
|
|||||||
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
|
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
|
||||||
ports:
|
ports:
|
||||||
- 7687:7687
|
- 7687:7687
|
||||||
- 7474:7474
|
|
||||||
networks:
|
networks:
|
||||||
hc-network:
|
hc-network:
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
FROM humanconnection/neo4j:latest
|
FROM schoolsinmotion/neo4j:bare
|
||||||
|
|||||||
@ -1,2 +1,3 @@
|
|||||||
FROM humanconnection/webapp:build-and-test
|
FROM schoolsinmotion/webapp:bare
|
||||||
COPY static/ static/
|
COPY static/ static/
|
||||||
|
COPY constants/ constants/
|
||||||
|
|||||||
4
webapp/constants/emails.js
Normal file
4
webapp/constants/emails.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export default {
|
||||||
|
SUPPORT: 'support-schools-in-motion@roschaefer.de',
|
||||||
|
MODERATION: 'moderation-schools-in-motion@roschaefer.de',
|
||||||
|
}
|
||||||
7
webapp/constants/links.js
Normal file
7
webapp/constants/links.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export default {
|
||||||
|
ORGANIZATION: 'https://www.youth-and-arts.nrw/',
|
||||||
|
DONATE: 'https://www.youth-and-arts.nrw/de/kontakt',
|
||||||
|
IMPRINT: 'https://www.youth-and-arts.nrw/de/impressum',
|
||||||
|
DATA_PRIVACY: 'https://www.youth-and-arts.nrw/de/datenschutzerklaerung',
|
||||||
|
FAQ: 'https://www.youth-and-arts.nrw/de/kontakt',
|
||||||
|
}
|
||||||
7
webapp/constants/manifest.js
Normal file
7
webapp/constants/manifest.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export default {
|
||||||
|
name: 'fyphe_O',
|
||||||
|
short_name: 'fO',
|
||||||
|
description: 'The schools in motion network',
|
||||||
|
theme_color: '#17b53f',
|
||||||
|
lang: 'en',
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user