mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 15:49:36 +01:00
* Separated environment variables for specific app containers. * updated env * cleanup * Separated environment variables for specific app containers. * updated env * cleanup --------- Co-authored-by: Akshat Jain <akshatjain9782@gmail.com>
234 lines
6.3 KiB
YAML
234 lines
6.3 KiB
YAML
x-db-env: &db-env
|
|
PGHOST: ${PGHOST:-plane-db}
|
|
PGDATABASE: ${PGDATABASE:-plane}
|
|
POSTGRES_USER: ${POSTGRES_USER:-plane}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-plane}
|
|
POSTGRES_DB: ${POSTGRES_DB:-plane}
|
|
POSTGRES_PORT: ${POSTGRES_PORT:-5432}
|
|
PGDATA: ${PGDATA:-/var/lib/postgresql/data}
|
|
|
|
x-redis-env: &redis-env
|
|
REDIS_HOST: ${REDIS_HOST:-plane-redis}
|
|
REDIS_PORT: ${REDIS_PORT:-6379}
|
|
REDIS_URL: ${REDIS_URL:-redis://plane-redis:6379/}
|
|
|
|
x-minio-env: &minio-env
|
|
MINIO_ROOT_USER: ${AWS_ACCESS_KEY_ID:-access-key}
|
|
MINIO_ROOT_PASSWORD: ${AWS_SECRET_ACCESS_KEY:-secret-key}
|
|
|
|
x-aws-s3-env: &aws-s3-env
|
|
AWS_REGION: ${AWS_REGION:-}
|
|
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID:-access-key}
|
|
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY:-secret-key}
|
|
AWS_S3_ENDPOINT_URL: ${AWS_S3_ENDPOINT_URL:-http://plane-minio:9000}
|
|
AWS_S3_BUCKET_NAME: ${AWS_S3_BUCKET_NAME:-uploads}
|
|
|
|
x-proxy-env: &proxy-env
|
|
NGINX_PORT: ${NGINX_PORT:-80}
|
|
BUCKET_NAME: ${AWS_S3_BUCKET_NAME:-uploads}
|
|
FILE_SIZE_LIMIT: ${FILE_SIZE_LIMIT:-5242880}
|
|
|
|
x-mq-env: &mq-env
|
|
# RabbitMQ Settings
|
|
RABBITMQ_HOST: ${RABBITMQ_HOST:-plane-mq}
|
|
RABBITMQ_PORT: ${RABBITMQ_PORT:-5672}
|
|
RABBITMQ_DEFAULT_USER: ${RABBITMQ_USER:-plane}
|
|
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASSWORD:-plane}
|
|
RABBITMQ_DEFAULT_VHOST: ${RABBITMQ_VHOST:-plane}
|
|
RABBITMQ_VHOST: ${RABBITMQ_VHOST:-plane}
|
|
|
|
x-live-env: &live-env
|
|
API_BASE_URL: ${API_BASE_URL:-http://api:8000}
|
|
|
|
x-app-env: &app-env
|
|
WEB_URL: ${WEB_URL:-http://localhost}
|
|
DEBUG: ${DEBUG:-0}
|
|
SENTRY_DSN: ${SENTRY_DSN}
|
|
SENTRY_ENVIRONMENT: ${SENTRY_ENVIRONMENT:-production}
|
|
CORS_ALLOWED_ORIGINS: ${CORS_ALLOWED_ORIGINS}
|
|
GUNICORN_WORKERS: 1
|
|
USE_MINIO: ${USE_MINIO:-1}
|
|
DATABASE_URL: ${DATABASE_URL:-postgresql://plane:plane@plane-db/plane}
|
|
SECRET_KEY: ${SECRET_KEY:-60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5}
|
|
ADMIN_BASE_URL: ${ADMIN_BASE_URL}
|
|
SPACE_BASE_URL: ${SPACE_BASE_URL}
|
|
APP_BASE_URL: ${APP_BASE_URL}
|
|
AMQP_URL: ${AMQP_URL:-amqp://plane:plane@plane-mq:5672/plane}
|
|
|
|
|
|
services:
|
|
web:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-frontend:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: node web/server.js web
|
|
deploy:
|
|
replicas: ${WEB_REPLICAS:-1}
|
|
depends_on:
|
|
- api
|
|
- worker
|
|
|
|
space:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-space:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: node space/server.js space
|
|
deploy:
|
|
replicas: ${SPACE_REPLICAS:-1}
|
|
depends_on:
|
|
- api
|
|
- worker
|
|
- web
|
|
|
|
admin:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-admin:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: node admin/server.js admin
|
|
deploy:
|
|
replicas: ${ADMIN_REPLICAS:-1}
|
|
depends_on:
|
|
- api
|
|
- web
|
|
|
|
live:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-live:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: node live/dist/server.js live
|
|
environment:
|
|
<<: [ *live-env ]
|
|
deploy:
|
|
replicas: ${LIVE_REPLICAS:-1}
|
|
depends_on:
|
|
- api
|
|
- web
|
|
|
|
api:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: ./bin/docker-entrypoint-api.sh
|
|
deploy:
|
|
replicas: ${API_REPLICAS:-1}
|
|
volumes:
|
|
- logs_api:/code/plane/logs
|
|
environment:
|
|
<<: [ *app-env, *db-env, *redis-env, *minio-env, *aws-s3-env, *proxy-env ]
|
|
depends_on:
|
|
- plane-db
|
|
- plane-redis
|
|
- plane-mq
|
|
|
|
worker:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: ./bin/docker-entrypoint-worker.sh
|
|
volumes:
|
|
- logs_worker:/code/plane/logs
|
|
environment:
|
|
<<: [ *app-env, *db-env, *redis-env, *minio-env, *aws-s3-env, *proxy-env ]
|
|
depends_on:
|
|
- api
|
|
- plane-db
|
|
- plane-redis
|
|
- plane-mq
|
|
|
|
beat-worker:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: ./bin/docker-entrypoint-beat.sh
|
|
volumes:
|
|
- logs_beat-worker:/code/plane/logs
|
|
environment:
|
|
<<: [ *app-env, *db-env, *redis-env, *minio-env, *aws-s3-env, *proxy-env ]
|
|
depends_on:
|
|
- api
|
|
- plane-db
|
|
- plane-redis
|
|
- plane-mq
|
|
|
|
migrator:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: "no"
|
|
command: ./bin/docker-entrypoint-migrator.sh
|
|
volumes:
|
|
- logs_migrator:/code/plane/logs
|
|
environment:
|
|
<<: [ *app-env, *db-env, *redis-env, *minio-env, *aws-s3-env, *proxy-env ]
|
|
depends_on:
|
|
- plane-db
|
|
- plane-redis
|
|
|
|
plane-db:
|
|
image: postgres:15.7-alpine
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: postgres -c 'max_connections=1000'
|
|
environment:
|
|
<<: *db-env
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
plane-redis:
|
|
image: valkey/valkey:7.2.5-alpine
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redisdata:/data
|
|
|
|
plane-mq:
|
|
image: rabbitmq:3.13.6-management-alpine
|
|
restart: always
|
|
environment:
|
|
<<: *mq-env
|
|
volumes:
|
|
- rabbitmq_data:/var/lib/rabbitmq
|
|
|
|
plane-minio:
|
|
image: minio/minio:latest
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
command: server /export --console-address ":9090"
|
|
environment:
|
|
<<: *minio-env
|
|
volumes:
|
|
- uploads:/export
|
|
|
|
# Comment this if you already have a reverse proxy running
|
|
proxy:
|
|
image: ${DOCKERHUB_USER:-makeplane}/plane-proxy:${APP_RELEASE:-stable}
|
|
platform: ${DOCKER_PLATFORM:-}
|
|
pull_policy: if_not_present
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${NGINX_PORT}:80
|
|
environment:
|
|
<<: *proxy-env
|
|
depends_on:
|
|
- web
|
|
- api
|
|
- space
|
|
|
|
volumes:
|
|
pgdata:
|
|
redisdata:
|
|
|
|
uploads:
|
|
logs_api:
|
|
logs_worker:
|
|
logs_beat-worker:
|
|
logs_migrator:
|
|
rabbitmq_data:
|