mirror of
https://github.com/makeplane/plane.git
synced 2026-02-12 00:59:24 -06:00
- Changed references from 'apiserver' to 'apps/server' in Docker configurations and environment setup. - Updated contributing documentation to reflect the new service structure. - Adjusted setup script to accommodate the new directory layout. - Removed obsolete files related to the previous structure.
31 lines
766 B
YAML
31 lines
766 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: ./apps/server
|
|
dockerfile: ./Dockerfile.api
|
|
|
|
proxy:
|
|
image: ${DOCKERHUB_USER:-local}/plane-proxy:${APP_RELEASE:-latest}
|
|
build:
|
|
context: ./nginx
|
|
dockerfile: ./Dockerfile
|