cli-install fixes for god-mode (#224)

This commit is contained in:
Manish Gupta
2024-05-09 16:45:52 +05:30
committed by GitHub
parent 41093efbb7
commit 335bf88af1
3 changed files with 28 additions and 0 deletions

View File

@@ -10,8 +10,12 @@
reverse_proxy /spaces/* space:3000
reverse_proxy /god-mode/* admin:3000
reverse_proxy /api/* api:8000
reverse_proxy /auth/* api:8000
reverse_proxy /{$BUCKET_NAME}/* plane-minio:9000
reverse_proxy /* web:3000

View File

@@ -46,6 +46,18 @@ x-app-env: &app-env
- FILE_SIZE_LIMIT=${FILE_SIZE_LIMIT:-5242880}
services:
admin:
<<: *app-env
image: registry.plane.tools/plane/admin-enterprise:${APP_RELEASE_VERSION}
restart: unless-stopped
command: node admin/server.js admin
deploy:
replicas: ${ADMIN_REPLICAS:-1}
depends_on:
- api
- web
web:
<<: *app-env
image: registry.plane.tools/plane/web-enterprise:${APP_RELEASE_VERSION}

View File

@@ -37,6 +37,18 @@ x-app-env: &app-env
- FILE_SIZE_LIMIT=${FILE_SIZE_LIMIT:-5242880}
services:
admin:
<<: *app-env
image: registry.plane.tools/plane/admin-enterprise:${APP_RELEASE_VERSION}
restart: unless-stopped
command: node admin/server.js admin
deploy:
replicas: ${ADMIN_REPLICAS:-1}
depends_on:
- api
- web
web:
<<: *app-env
image: registry.plane.tools/plane/web-enterprise:${APP_RELEASE_VERSION}