-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev: self host local build for other arch cpu (#3358)
handled x86_64 along with amd64
- Loading branch information
1 parent
4b0d855
commit 4ab64b6
Showing
3 changed files
with
143 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters