Update deps, fix Docker build errors

This commit is contained in:
Darren Clarke 2024-05-14 09:40:58 +02:00
parent 162390008b
commit c62bfd2a4c
31 changed files with 832 additions and 1227 deletions

View file

@ -35,7 +35,9 @@ x-bridge-vars: &common-bridge-variables
services:
bridge-frontend:
build: ../../apps/bridge-frontend
build:
context: ../../
dockerfile: ./apps/bridge-frontend/Dockerfile
container_name: bridge-frontend
restart: ${RESTART}
ports:
@ -43,7 +45,9 @@ services:
environment: *common-bridge-variables
bridge-worker:
build: ../../apps/bridge-worker
build:
context: ../../
dockerfile: ./apps/bridge-worker/Dockerfile
container_name: bridge-worker
restart: ${RESTART}
environment: *common-bridge-variables

View file

@ -5,8 +5,8 @@ services:
container_name: leafcutter
restart: ${RESTART}
build:
context: .
dockerfile: ../../apps/leafcutter/Dockerfile
context: ../../
dockerfile: ./apps/leafcutter/Dockerfile
image: registry.gitlab.com/digiresilience/link/link-stack/leafcutter:${LINK_STACK_VERSION}
expose:
- "3000"

View file

@ -5,8 +5,8 @@ services:
container_name: link
restart: ${RESTART}
build:
context: .
dockerfile: ../../apps/link/Dockerfile
context: ../../
dockerfile: ./apps/link/Dockerfile
image: registry.gitlab.com/digiresilience/link/link-stack/link:${LINK_STACK_VERSION}
expose:
- "3000"