diff --git a/docker-compose-hub.yml b/docker-compose-hub.yml index 84ff8b833..fcb93c530 100644 --- a/docker-compose-hub.yml +++ b/docker-compose-hub.yml @@ -55,20 +55,6 @@ services: depends_on: - plane-api - plane-worker - - plane-deploy: - container_name: planedeploy - image: makeplane/plane-space:latest - restart: always - command: node apps/space/server.js space - env_file: - - .env - environment: - NEXT_PUBLIC_API_BASE_URL: ${NEXT_PUBLIC_API_BASE_URL} - depends_on: - - plane-api - - plane-worker - - plane-web plane-api: container_name: planebackend diff --git a/docker-compose.yml b/docker-compose.yml index 07aa79f36..f69f5be1d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -60,23 +60,6 @@ services: depends_on: - plane-api - plane-worker - plane-deploy: - container_name: planedeploy - build: - context: . - dockerfile: ./apps/space/Dockerfile.space - args: - NEXT_PUBLIC_API_BASE_URL: http://localhost:8000 - restart: always - command: /usr/local/bin/start.sh apps/space/server.js space - env_file: - - .env - environment: - NEXT_PUBLIC_API_BASE_URL: ${NEXT_PUBLIC_API_BASE_URL} - depends_on: - - plane-api - - plane-worker - - plane-web plane-api: container_name: planebackend diff --git a/nginx/nginx.conf.template b/nginx/nginx.conf.template index 796c9e10d..206c94b51 100644 --- a/nginx/nginx.conf.template +++ b/nginx/nginx.conf.template @@ -15,10 +15,6 @@ server { proxy_pass http://planefrontend:3000/; } - location /spaces/ { - proxy_pass http://planedeploy:3000/; - } - location /api/ { proxy_pass http://planebackend:8000/api/; }