diff --git a/deployments/cli/community/docker-compose.yml b/deployments/cli/community/docker-compose.yml index e9cfce2ff..7afc8d2a1 100644 --- a/deployments/cli/community/docker-compose.yml +++ b/deployments/cli/community/docker-compose.yml @@ -61,7 +61,6 @@ x-app-env: &app-env services: web: image: artifacts.plane.so/makeplane/plane-frontend:${APP_RELEASE:-stable} - command: node web/server.js web deploy: replicas: ${WEB_REPLICAS:-1} restart_policy: @@ -72,7 +71,6 @@ services: space: image: artifacts.plane.so/makeplane/plane-space:${APP_RELEASE:-stable} - command: node space/server.js space deploy: replicas: ${SPACE_REPLICAS:-1} restart_policy: @@ -84,7 +82,6 @@ services: admin: image: artifacts.plane.so/makeplane/plane-admin:${APP_RELEASE:-stable} - command: node admin/server.js admin deploy: replicas: ${ADMIN_REPLICAS:-1} restart_policy: @@ -95,7 +92,6 @@ services: live: image: artifacts.plane.so/makeplane/plane-live:${APP_RELEASE:-stable} - command: node live/dist/server.js live environment: <<: [*live-env] deploy: @@ -227,23 +223,23 @@ services: environment: <<: *proxy-env ports: - - target: 80 - published: ${LISTEN_HTTP_PORT:-80} - protocol: tcp - mode: host - - target: 443 - published: ${LISTEN_HTTPS_PORT:-443} - protocol: tcp - mode: host + - target: 80 + published: ${LISTEN_HTTP_PORT:-80} + protocol: tcp + mode: host + - target: 443 + published: ${LISTEN_HTTPS_PORT:-443} + protocol: tcp + mode: host volumes: - - proxy_config:/config - - proxy_data:/data + - proxy_config:/config + - proxy_data:/data depends_on: - - web - - api - - space - - admin - - live + - web + - api + - space + - admin + - live volumes: pgdata: