Removed Caddy from plane compose
This commit is contained in:
@@ -8,8 +8,10 @@ services:
|
|||||||
image: makeplane/plane-frontend:stable
|
image: makeplane/plane-frontend:stable
|
||||||
container_name: plane-web
|
container_name: plane-web
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8082:3000"
|
||||||
environment:
|
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
|
- NEXT_PUBLIC_DEPLOY_URL=https://plane.rishighan.com
|
||||||
depends_on:
|
depends_on:
|
||||||
- plane-api
|
- plane-api
|
||||||
@@ -21,6 +23,8 @@ services:
|
|||||||
container_name: plane-api
|
container_name: plane-api
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command: /code/bin/docker-entrypoint-api.sh
|
command: /code/bin/docker-entrypoint-api.sh
|
||||||
|
ports:
|
||||||
|
- "8085:8000"
|
||||||
environment:
|
environment:
|
||||||
- DEBUG=0
|
- DEBUG=0
|
||||||
- DJANGO_SETTINGS_MODULE=plane.settings.production
|
- DJANGO_SETTINGS_MODULE=plane.settings.production
|
||||||
@@ -32,8 +36,6 @@ services:
|
|||||||
- AWS_S3_BUCKET_NAME=plane-uploads
|
- AWS_S3_BUCKET_NAME=plane-uploads
|
||||||
- AWS_S3_ENDPOINT_URL=http://plane-minio:9000
|
- AWS_S3_ENDPOINT_URL=http://plane-minio:9000
|
||||||
- USE_MINIO=1
|
- USE_MINIO=1
|
||||||
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
|
|
||||||
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
|
|
||||||
- WEB_URL=https://plane.rishighan.com
|
- WEB_URL=https://plane.rishighan.com
|
||||||
- CORS_ALLOWED_ORIGINS=https://plane.rishighan.com
|
- CORS_ALLOWED_ORIGINS=https://plane.rishighan.com
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -59,8 +61,6 @@ services:
|
|||||||
- AWS_S3_ENDPOINT_URL=http://plane-minio:9000
|
- AWS_S3_ENDPOINT_URL=http://plane-minio:9000
|
||||||
- USE_MINIO=1
|
- USE_MINIO=1
|
||||||
depends_on:
|
depends_on:
|
||||||
- plane-db
|
|
||||||
- plane-redis
|
|
||||||
- plane-api
|
- plane-api
|
||||||
networks:
|
networks:
|
||||||
- plane-net
|
- plane-net
|
||||||
@@ -77,41 +77,10 @@ services:
|
|||||||
- REDIS_URL=redis://plane-redis:6379/
|
- REDIS_URL=redis://plane-redis:6379/
|
||||||
- SECRET_KEY=${SECRET_KEY}
|
- SECRET_KEY=${SECRET_KEY}
|
||||||
depends_on:
|
depends_on:
|
||||||
- plane-db
|
|
||||||
- plane-redis
|
|
||||||
- plane-api
|
- plane-api
|
||||||
networks:
|
networks:
|
||||||
- plane-net
|
- 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:
|
plane-db:
|
||||||
image: postgres:15
|
image: postgres:15
|
||||||
container_name: plane-db
|
container_name: plane-db
|
||||||
@@ -145,4 +114,4 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /mnt/user/appdata/plane/minio-data:/data
|
- /mnt/user/appdata/plane/minio-data:/data
|
||||||
networks:
|
networks:
|
||||||
- plane-net
|
- plane-net
|
||||||
Reference in New Issue
Block a user