mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
fix: remove commands from the docker compose file (#7476)
This commit is contained in:
committed by
GitHub
parent
18e4c60b42
commit
ed4ee3ad7e
@@ -61,7 +61,6 @@ x-app-env: &app-env
|
|||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
image: artifacts.plane.so/makeplane/plane-frontend:${APP_RELEASE:-stable}
|
image: artifacts.plane.so/makeplane/plane-frontend:${APP_RELEASE:-stable}
|
||||||
command: node web/server.js web
|
|
||||||
deploy:
|
deploy:
|
||||||
replicas: ${WEB_REPLICAS:-1}
|
replicas: ${WEB_REPLICAS:-1}
|
||||||
restart_policy:
|
restart_policy:
|
||||||
@@ -72,7 +71,6 @@ services:
|
|||||||
|
|
||||||
space:
|
space:
|
||||||
image: artifacts.plane.so/makeplane/plane-space:${APP_RELEASE:-stable}
|
image: artifacts.plane.so/makeplane/plane-space:${APP_RELEASE:-stable}
|
||||||
command: node space/server.js space
|
|
||||||
deploy:
|
deploy:
|
||||||
replicas: ${SPACE_REPLICAS:-1}
|
replicas: ${SPACE_REPLICAS:-1}
|
||||||
restart_policy:
|
restart_policy:
|
||||||
@@ -84,7 +82,6 @@ services:
|
|||||||
|
|
||||||
admin:
|
admin:
|
||||||
image: artifacts.plane.so/makeplane/plane-admin:${APP_RELEASE:-stable}
|
image: artifacts.plane.so/makeplane/plane-admin:${APP_RELEASE:-stable}
|
||||||
command: node admin/server.js admin
|
|
||||||
deploy:
|
deploy:
|
||||||
replicas: ${ADMIN_REPLICAS:-1}
|
replicas: ${ADMIN_REPLICAS:-1}
|
||||||
restart_policy:
|
restart_policy:
|
||||||
@@ -95,7 +92,6 @@ services:
|
|||||||
|
|
||||||
live:
|
live:
|
||||||
image: artifacts.plane.so/makeplane/plane-live:${APP_RELEASE:-stable}
|
image: artifacts.plane.so/makeplane/plane-live:${APP_RELEASE:-stable}
|
||||||
command: node live/dist/server.js live
|
|
||||||
environment:
|
environment:
|
||||||
<<: [*live-env]
|
<<: [*live-env]
|
||||||
deploy:
|
deploy:
|
||||||
@@ -227,23 +223,23 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
<<: *proxy-env
|
<<: *proxy-env
|
||||||
ports:
|
ports:
|
||||||
- target: 80
|
- target: 80
|
||||||
published: ${LISTEN_HTTP_PORT:-80}
|
published: ${LISTEN_HTTP_PORT:-80}
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
mode: host
|
mode: host
|
||||||
- target: 443
|
- target: 443
|
||||||
published: ${LISTEN_HTTPS_PORT:-443}
|
published: ${LISTEN_HTTPS_PORT:-443}
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
mode: host
|
mode: host
|
||||||
volumes:
|
volumes:
|
||||||
- proxy_config:/config
|
- proxy_config:/config
|
||||||
- proxy_data:/data
|
- proxy_data:/data
|
||||||
depends_on:
|
depends_on:
|
||||||
- web
|
- web
|
||||||
- api
|
- api
|
||||||
- space
|
- space
|
||||||
- admin
|
- admin
|
||||||
- live
|
- live
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
pgdata:
|
pgdata:
|
||||||
|
|||||||
Reference in New Issue
Block a user