mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 15:49:36 +01:00
* removed code build process from install script * fixes in install.sh * fixed docker-compose.yaml * wip * sync env files during upgrade * updated variables.env * updated readme * Update deploy/selfhost/install.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * implemented codacy suggestions * implemented codacy suggestions * Update deploy/selfhost/install.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update deploy/selfhost/install.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update deploy/selfhost/install.sh Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * update codacy suggestions * coderabbit suggestion --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
31 lines
764 B
YAML
31 lines
764 B
YAML
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
|
|
|
|
admin:
|
|
image: ${DOCKERHUB_USER:-local}/plane-admin:${APP_RELEASE:-latest}
|
|
build:
|
|
context: ./
|
|
dockerfile: ./admin/Dockerfile.admin
|
|
|
|
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
|