dev: self host local build for other arch cpu (#3358)

handled x86_64 along with amd64
This commit is contained in:
Manish Gupta 2024-01-17 19:03:57 +05:30 committed by sriram veeraghanta
parent 4b0d85591e
commit 4ab64b6905
3 changed files with 143 additions and 23 deletions

26
deploy/selfhost/build.yml Normal file
View file

@ -0,0 +1,26 @@
version: "3.8"
services:
web:
image: ${DOCKERHUB_USER:-local}/plane-frontend:${APP_RELEASE:-latest}
build:
context: .
dockerfile: ./web/Dockerfile.web
space:
image: ${DOCKERHUB_USER:-local}/plane-space:${APP_RELEASE:-latest}
build:
context: ./
dockerfile: ./space/Dockerfile.space
api:
image: ${DOCKERHUB_USER:-local}/plane-backend:${APP_RELEASE:-latest}
build:
context: ./apiserver
dockerfile: ./Dockerfile.api
proxy:
image: ${DOCKERHUB_USER:-local}/plane-proxy:${APP_RELEASE:-latest}
build:
context: ./nginx
dockerfile: ./Dockerfile