Removed Caddy from plane compose

This commit is contained in:
2025-12-31 00:51:30 -05:00
parent b56fc01701
commit 4e6bbb88e9

View File

@@ -8,8 +8,10 @@ services:
image: makeplane/plane-frontend:stable
container_name: plane-web
restart: unless-stopped
ports:
- "8082:3000"
environment:
- NEXT_PUBLIC_API_BASE_URL=http://plane-api:8000
- NEXT_PUBLIC_API_BASE_URL=https://plane.rishighan.com/api
- NEXT_PUBLIC_DEPLOY_URL=https://plane.rishighan.com
depends_on:
- plane-api
@@ -21,6 +23,8 @@ services:
container_name: plane-api
restart: unless-stopped
command: /code/bin/docker-entrypoint-api.sh
ports:
- "8085:8000"
environment:
- DEBUG=0
- DJANGO_SETTINGS_MODULE=plane.settings.production
@@ -32,8 +36,6 @@ services:
- AWS_S3_BUCKET_NAME=plane-uploads
- AWS_S3_ENDPOINT_URL=http://plane-minio:9000
- USE_MINIO=1
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
- WEB_URL=https://plane.rishighan.com
- CORS_ALLOWED_ORIGINS=https://plane.rishighan.com
depends_on:
@@ -59,8 +61,6 @@ services:
- AWS_S3_ENDPOINT_URL=http://plane-minio:9000
- USE_MINIO=1
depends_on:
- plane-db
- plane-redis
- plane-api
networks:
- plane-net
@@ -77,41 +77,10 @@ services:
- REDIS_URL=redis://plane-redis:6379/
- SECRET_KEY=${SECRET_KEY}
depends_on:
- plane-db
- plane-redis
- plane-api
networks:
- plane-net
plane-space:
image: makeplane/plane-space:stable
container_name: plane-space
restart: unless-stopped
environment:
- NEXT_PUBLIC_API_BASE_URL=http://plane-api:8000
depends_on:
- plane-api
networks:
- plane-net
plane-proxy:
image: makeplane/plane-proxy:stable
container_name: plane-proxy
restart: unless-stopped
ports:
- "8082:80"
environment:
- FILE_SIZE_LIMIT=5242880
- BUCKET_NAME=plane-uploads
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
depends_on:
- plane-web
- plane-api
- plane-space
networks:
- plane-net
plane-db:
image: postgres:15
container_name: plane-db
@@ -145,4 +114,4 @@ services:
volumes:
- /mnt/user/appdata/plane/minio-data:/data
networks:
- plane-net
- plane-net