Use root as docker context for the app/worker images

This commit is contained in:
Adria Navarro 2023-10-18 14:28:30 +02:00
parent b171e8e00f
commit e80a20d61f
1 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,9 @@ version: "3"
services: services:
app-service: app-service:
build: ../packages/server build:
context: ..
dockerfile: packages/server/Dockerfile
container_name: build-bbapps container_name: build-bbapps
environment: environment:
SELF_HOSTED: 1 SELF_HOSTED: 1
@ -32,7 +34,9 @@ services:
# - /some/path/to/plugins:/plugins # - /some/path/to/plugins:/plugins
worker-service: worker-service:
build: ../packages/worker build:
context: ..
dockerfile: packages/worker/Dockerfile
container_name: build-bbworker container_name: build-bbworker
environment: environment:
SELF_HOSTED: 1 SELF_HOSTED: 1