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:
app-service:
build: ../packages/server
build:
context: ..
dockerfile: packages/server/Dockerfile
container_name: build-bbapps
environment:
SELF_HOSTED: 1
@ -32,7 +34,9 @@ services:
# - /some/path/to/plugins:/plugins
worker-service:
build: ../packages/worker
build:
context: ..
dockerfile: packages/worker/Dockerfile
container_name: build-bbworker
environment:
SELF_HOSTED: 1