Loads from Dockerhub rather than local builds. Should remove loads of errors.

This commit is contained in:
frikky
2020-05-21 11:51:10 +02:00
parent b4d94e803f
commit df9e719cff
4 changed files with 32 additions and 26 deletions
+10 -13
View File
@@ -1,9 +1,7 @@
version: '3'
# Remove database port
# Remove backend port
services:
frontend:
build: ./frontend
#build: ./frontend
image: frikky/shuffle:frontend
container_name: shuffle-frontend
hostname: shuffle-frontend
@@ -12,25 +10,26 @@ services:
networks:
- shuffle
restart: unless-stopped
depends_on:
- backend
database:
build: ./backend/database
#build: ./backend/database
image: frikky/shuffle:database
container_name: shuffle-database
hostname: shuffle-database
ports:
- "8000:8000"
networks:
- shuffle
restart: unless-stopped
volumes:
- /etc/shuffle:/etc/shuffle
backend:
build: ./backend
#build: ./backend
image: frikky/shuffle:backend
container_name: shuffle-backend
hostname: ${BACKEND_HOSTNAME}
# Here for debugging:
ports:
- "${BACKEND_PORT}:${BACKEND_PORT}"
- "${BACKEND_PORT}:5001"
networks:
- shuffle
volumes:
@@ -38,13 +37,11 @@ services:
environment:
- ORG_ID=${ORG_ID}
- DATASTORE_EMULATOR_HOST=shuffle-database:8000
- BACKEND_PORT=${BACKEND_PORT}
restart: unless-stopped
depends_on:
- database
- frontend
orborus:
build: ./functions/onprem/orborus
#build: ./functions/onprem/orborus
image: frikky/shuffle:orborus
container_name: shuffle-orborus
hostname: shuffle-orborus
@@ -58,10 +55,10 @@ services:
- BASE_URL=http://${OUTER_HOSTNAME}:${BACKEND_PORT}
restart: unless-stopped
app_sdk:
build: ./functions/onprem/app_sdk
#build: ./functions/onprem/app_sdk
image: frikky/shuffle:app_sdk
worker:
build: ./functions/onprem/worker
#build: ./functions/onprem/worker
image: frikky/shuffle:worker
networks:
shuffle: