removed health checks none

This commit is contained in:
Alexander Gratzl 2024-07-14 00:36:14 +02:00
parent ae425475b4
commit b67bb8595f
2 changed files with 3 additions and 24 deletions

View File

@ -5,7 +5,6 @@
x-app-env: &app-env x-app-env: &app-env
environment: environment:
- NGINX_PORT=${NGINX_PORT:-9743}
- WEB_URL=http://localhost - WEB_URL=http://localhost
- DEBUG=${DEBUG:-0} - DEBUG=${DEBUG:-0}
- SENTRY_DSN=${SENTRY_DSN} - SENTRY_DSN=${SENTRY_DSN}
@ -50,6 +49,7 @@ services:
proxy: proxy:
environment: environment:
- SERVICE_FQDN_PLANE - SERVICE_FQDN_PLANE
- NGINX_PORT=${NGINX_PORT:-9743}
- FILE_SIZE_LIMIT=${FILE_SIZE_LIMIT:-5242880} - FILE_SIZE_LIMIT=${FILE_SIZE_LIMIT:-5242880}
image: ${DOCKERHUB_USER:-makeplane}/plane-proxy:${APP_RELEASE:-stable} image: ${DOCKERHUB_USER:-makeplane}/plane-proxy:${APP_RELEASE:-stable}
platform: ${DOCKER_PLATFORM:-} platform: ${DOCKER_PLATFORM:-}
@ -78,12 +78,6 @@ services:
depends_on: depends_on:
- api - api
- worker - worker
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000"]
interval: 2s
timeout: 10s
retries: 15
space: space:
<<: *app-env <<: *app-env
image: ${DOCKERHUB_USER:-makeplane}/plane-space:${APP_RELEASE:-stable} image: ${DOCKERHUB_USER:-makeplane}/plane-space:${APP_RELEASE:-stable}
@ -97,8 +91,6 @@ services:
- api - api
- worker - worker
- web - web
healthcheck:
test: ["NONE"]
admin: admin:
<<: *app-env <<: *app-env
@ -112,8 +104,6 @@ services:
depends_on: depends_on:
- api - api
- web - web
healthcheck:
test: ["NONE"]
api: api:
<<: *app-env <<: *app-env
@ -129,11 +119,6 @@ services:
depends_on: depends_on:
- plane-db - plane-db
- plane-redis - plane-redis
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8000/api"]
interval: 5s
timeout: 10s
retries: 15
worker: worker:
<<: *app-env <<: *app-env
@ -148,8 +133,6 @@ services:
- api - api
- plane-db - plane-db
- plane-redis - plane-redis
healthcheck:
test: ["NONE"]
beat-worker: beat-worker:
<<: *app-env <<: *app-env
@ -164,8 +147,6 @@ services:
- api - api
- plane-db - plane-db
- plane-redis - plane-redis
healthcheck:
test: ["NONE"]
migrator: migrator:
<<: *app-env <<: *app-env
@ -179,8 +160,6 @@ services:
depends_on: depends_on:
- plane-db - plane-db
- plane-redis - plane-redis
healthcheck:
test: ["NONE"]
plane-db: plane-db:
<<: *app-env <<: *app-env

File diff suppressed because one or more lines are too long