-
Notifications
You must be signed in to change notification settings - Fork 269
feat(plane): update to v1.2.1 #627
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: canary
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,17 +2,17 @@ version: "3.8" | |
|
|
||
| services: | ||
| web: | ||
| image: makeplane/plane-frontend:${APP_RELEASE:-v0.27.1} | ||
| command: node web/server.js web | ||
| image: artifacts.plane.so/makeplane/plane-frontend:${APP_RELEASE:-v1.2.1} | ||
| restart: unless-stopped | ||
| depends_on: | ||
| - api | ||
| - worker | ||
| env_file: | ||
| - .env | ||
|
|
||
| space: | ||
| image: makeplane/plane-space:${APP_RELEASE:-v0.27.1} | ||
| command: node space/server.js space | ||
| image: artifacts.plane.so/makeplane/plane-space:${APP_RELEASE:-v1.2.1} | ||
| restart: unless-stopped | ||
| depends_on: | ||
| - api | ||
| - worker | ||
|
|
@@ -21,26 +21,27 @@ services: | |
| - .env | ||
|
|
||
| admin: | ||
| image: makeplane/plane-admin:${APP_RELEASE:-v0.27.1} | ||
| command: node admin/server.js admin | ||
| image: artifacts.plane.so/makeplane/plane-admin:${APP_RELEASE:-v1.2.1} | ||
| restart: unless-stopped | ||
| depends_on: | ||
| - api | ||
| - web | ||
| env_file: | ||
| - .env | ||
|
|
||
| live: | ||
| image: makeplane/plane-live:${APP_RELEASE:-v0.27.1} | ||
| command: node live/dist/server.js live | ||
| image: artifacts.plane.so/makeplane/plane-live:${APP_RELEASE:-v1.2.1} | ||
| restart: unless-stopped | ||
| depends_on: | ||
| - api | ||
| - web | ||
| env_file: | ||
| - .env | ||
|
|
||
| api: | ||
| image: makeplane/plane-backend:${APP_RELEASE:-v0.27.1} | ||
| image: artifacts.plane.so/makeplane/plane-backend:${APP_RELEASE:-v1.2.1} | ||
| command: ./bin/docker-entrypoint-api.sh | ||
| restart: unless-stopped | ||
| volumes: | ||
| - logs_api:/code/plane/logs | ||
| depends_on: | ||
|
|
@@ -51,8 +52,9 @@ services: | |
| - .env | ||
|
|
||
| worker: | ||
| image: makeplane/plane-backend:${APP_RELEASE:-v0.27.1} | ||
| image: artifacts.plane.so/makeplane/plane-backend:${APP_RELEASE:-v1.2.1} | ||
| command: ./bin/docker-entrypoint-worker.sh | ||
| restart: unless-stopped | ||
| volumes: | ||
| - logs_worker:/code/plane/logs | ||
| depends_on: | ||
|
|
@@ -64,8 +66,9 @@ services: | |
| - .env | ||
|
|
||
| beat-worker: | ||
| image: makeplane/plane-backend:${APP_RELEASE:-v0.27.1} | ||
| image: artifacts.plane.so/makeplane/plane-backend:${APP_RELEASE:-v1.2.1} | ||
| command: ./bin/docker-entrypoint-beat.sh | ||
| restart: unless-stopped | ||
| volumes: | ||
| - logs_beat-worker:/code/plane/logs | ||
| depends_on: | ||
|
|
@@ -77,8 +80,9 @@ services: | |
| - .env | ||
|
|
||
| migrator: | ||
| image: makeplane/plane-backend:${APP_RELEASE:-v0.27.1} | ||
| image: artifacts.plane.so/makeplane/plane-backend:${APP_RELEASE:-v1.2.1} | ||
| command: ./bin/docker-entrypoint-migrator.sh | ||
| restart: on-failure | ||
| volumes: | ||
| - logs_migrator:/code/plane/logs | ||
| depends_on: | ||
|
|
@@ -88,41 +92,51 @@ services: | |
| - .env | ||
|
|
||
| plane-db: | ||
| image: postgres:17-alpine | ||
| image: postgres:15.7-alpine | ||
| command: postgres -c 'max_connections=1000' | ||
| restart: unless-stopped | ||
| volumes: | ||
| - pgdata:/var/lib/postgresql/data | ||
| env_file: | ||
| - .env | ||
|
|
||
| plane-redis: | ||
| image: valkey/valkey:7.2.5-alpine | ||
| image: valkey/valkey:7.2.11-alpine | ||
| restart: unless-stopped | ||
| volumes: | ||
| - redisdata:/data | ||
| env_file: | ||
| - .env | ||
|
|
||
| plane-mq: | ||
| image: rabbitmq:3.13.6-management-alpine | ||
| restart: unless-stopped | ||
| volumes: | ||
| - rabbitmq_data:/var/lib/rabbitmq | ||
| env_file: | ||
| - .env | ||
|
|
||
| plane-minio: | ||
| image: minio/minio:latest | ||
| image: minio/minio:RELEASE.2025-09-07T16-13-09Z | ||
|
||
| command: server /export --console-address ":9090" | ||
| restart: unless-stopped | ||
| volumes: | ||
| - uploads:/export | ||
| env_file: | ||
| - .env | ||
|
|
||
| proxy: | ||
| image: makeplane/plane-proxy:${APP_RELEASE:-v0.27.1} | ||
| image: artifacts.plane.so/makeplane/plane-proxy:${APP_RELEASE:-v1.2.1} | ||
| restart: unless-stopped | ||
| volumes: | ||
| - proxy_config:/config | ||
| - proxy_data:/data | ||
| depends_on: | ||
| - web | ||
| - api | ||
| - space | ||
| - admin | ||
| - live | ||
| env_file: | ||
| - .env | ||
|
|
||
|
|
@@ -135,3 +149,5 @@ volumes: | |
| logs_beat-worker: | ||
| logs_migrator: | ||
| rabbitmq_data: | ||
| proxy_config: | ||
| proxy_data: | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The previous version had explicit "command" directives for the web, space, admin, and live services (e.g., "node web/server.js web"). These have been removed in v1.2.1. While this may be intentional if the new images have updated ENTRYPOINT/CMD defaults, it's worth verifying that these services still start correctly without explicit commands. Consider testing the deployment to ensure all frontend services initialize properly.