mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4ab64b6905
handled x86_64 along with amd64
27 lines
627 B
YAML
27 lines
627 B
YAML
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
|