[INFRA-206] fix: update build context and dockerfile paths in build.yml in deploy/selfhost (#7368)
* chore: update build context and dockerfile paths in build.yml for self-hosted deployment * fix: build context --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
parent
9d88fc999c
commit
853423608c
1 changed files with 16 additions and 10 deletions
|
|
@ -2,29 +2,35 @@ services:
|
||||||
web:
|
web:
|
||||||
image: ${DOCKERHUB_USER:-local}/plane-frontend:${APP_RELEASE:-latest}
|
image: ${DOCKERHUB_USER:-local}/plane-frontend:${APP_RELEASE:-latest}
|
||||||
build:
|
build:
|
||||||
context: .
|
context: ../../
|
||||||
dockerfile: ./web/Dockerfile.web
|
dockerfile: apps/web/Dockerfile.web
|
||||||
|
|
||||||
space:
|
space:
|
||||||
image: ${DOCKERHUB_USER:-local}/plane-space:${APP_RELEASE:-latest}
|
image: ${DOCKERHUB_USER:-local}/plane-space:${APP_RELEASE:-latest}
|
||||||
build:
|
build:
|
||||||
context: ./
|
context: ../../
|
||||||
dockerfile: ./space/Dockerfile.space
|
dockerfile: apps/space/Dockerfile.space
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
image: ${DOCKERHUB_USER:-local}/plane-admin:${APP_RELEASE:-latest}
|
image: ${DOCKERHUB_USER:-local}/plane-admin:${APP_RELEASE:-latest}
|
||||||
build:
|
build:
|
||||||
context: ./
|
context: ../../
|
||||||
dockerfile: ./admin/Dockerfile.admin
|
dockerfile: apps/admin/Dockerfile.admin
|
||||||
|
|
||||||
|
live:
|
||||||
|
image: ${DOCKERHUB_USER:-local}/plane-live:${APP_RELEASE:-latest}
|
||||||
|
build:
|
||||||
|
context: ../../
|
||||||
|
dockerfile: apps/live/Dockerfile.live
|
||||||
|
|
||||||
api:
|
api:
|
||||||
image: ${DOCKERHUB_USER:-local}/plane-backend:${APP_RELEASE:-latest}
|
image: ${DOCKERHUB_USER:-local}/plane-backend:${APP_RELEASE:-latest}
|
||||||
build:
|
build:
|
||||||
context: ./apps/server
|
context: ../../apps/api
|
||||||
dockerfile: ./Dockerfile.api
|
dockerfile: Dockerfile.api
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
image: ${DOCKERHUB_USER:-local}/plane-proxy:${APP_RELEASE:-latest}
|
image: ${DOCKERHUB_USER:-local}/plane-proxy:${APP_RELEASE:-latest}
|
||||||
build:
|
build:
|
||||||
context: ./nginx
|
context: ../../nginx
|
||||||
dockerfile: ./Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue