chore: docker entry file name changes

This commit is contained in:
sriram veeraghanta 2024-05-22 12:46:19 +05:30
parent 639d24bd5a
commit a644d38218
8 changed files with 12 additions and 12 deletions

View File

@ -86,7 +86,7 @@ services:
platform: ${DOCKER_PLATFORM:-} platform: ${DOCKER_PLATFORM:-}
pull_policy: ${PULL_POLICY:-always} pull_policy: ${PULL_POLICY:-always}
restart: unless-stopped restart: unless-stopped
command: ./bin/docker-entry-api.sh command: ./bin/docker-entrypoint-api.sh
deploy: deploy:
replicas: ${API_REPLICAS:-1} replicas: ${API_REPLICAS:-1}
volumes: volumes:
@ -101,7 +101,7 @@ services:
platform: ${DOCKER_PLATFORM:-} platform: ${DOCKER_PLATFORM:-}
pull_policy: ${PULL_POLICY:-always} pull_policy: ${PULL_POLICY:-always}
restart: unless-stopped restart: unless-stopped
command: ./bin/docker-entry-worker.sh command: ./bin/docker-entrypoint-worker.sh
volumes: volumes:
- logs_worker:/code/plane/logs - logs_worker:/code/plane/logs
depends_on: depends_on:
@ -115,7 +115,7 @@ services:
platform: ${DOCKER_PLATFORM:-} platform: ${DOCKER_PLATFORM:-}
pull_policy: ${PULL_POLICY:-always} pull_policy: ${PULL_POLICY:-always}
restart: unless-stopped restart: unless-stopped
command: ./bin/docker-entry-beat.sh command: ./bin/docker-entrypoint-beat.sh
volumes: volumes:
- logs_beat-worker:/code/plane/logs - logs_beat-worker:/code/plane/logs
depends_on: depends_on:
@ -129,7 +129,7 @@ services:
platform: ${DOCKER_PLATFORM:-} platform: ${DOCKER_PLATFORM:-}
pull_policy: ${PULL_POLICY:-always} pull_policy: ${PULL_POLICY:-always}
restart: no restart: no
command: ./bin/docker-entry-migrator.sh command: ./bin/docker-entrypoint-migrator.sh
volumes: volumes:
- logs_migrator:/code/plane/logs - logs_migrator:/code/plane/logs
depends_on: depends_on:

View File

@ -97,7 +97,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- ./apiserver:/code - ./apiserver:/code
command: ./bin/docker-entry-api.sh command: ./bin/docker-entrypoint-api.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:
@ -115,7 +115,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- ./apiserver:/code - ./apiserver:/code
command: ./bin/docker-entry-worker.sh command: ./bin/docker-entrypoint-worker.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:
@ -134,7 +134,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- ./apiserver:/code - ./apiserver:/code
command: ./bin/docker-entry-beat.sh command: ./bin/docker-entrypoint-beat.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:
@ -153,7 +153,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- ./apiserver:/code - ./apiserver:/code
command: ./bin/docker-entry-migrator.sh --settings=plane.settings.local command: ./bin/docker-entrypoint-migrator.sh --settings=plane.settings.local
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:

View File

@ -45,7 +45,7 @@ services:
args: args:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
restart: always restart: always
command: ./bin/docker-entry-api.sh command: ./bin/docker-entrypoint-api.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:
@ -60,7 +60,7 @@ services:
args: args:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
restart: always restart: always
command: ./bin/docker-entry-worker.sh command: ./bin/docker-entrypoint-worker.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:
@ -76,7 +76,7 @@ services:
args: args:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
restart: always restart: always
command: ./bin/docker-entry-beat.sh command: ./bin/docker-entrypoint-beat.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on:
@ -92,7 +92,7 @@ services:
args: args:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
restart: no restart: no
command: ./bin/docker-entry-migrator.sh command: ./bin/docker-entrypoint-migrator.sh
env_file: env_file:
- ./apiserver/.env - ./apiserver/.env
depends_on: depends_on: