Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(dev) : Do not restart docker images in dev #313

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ x-airflow-common:
services:
airflow-db:
image: postgres:14
restart: on-failure
restart: no
healthcheck:
test: [ "CMD", "pg_isready", "-U", "airflow" ]
interval: 5s
Expand All @@ -68,7 +68,7 @@ services:
<<: *airflow-common
image: data-inclusion/pipeline
command: webserver
restart: on-failure
restart: no
ports:
- ${AIRFLOW_UI_PORT:-8080}:8080
depends_on:
Expand All @@ -82,7 +82,7 @@ services:
build:
context: pipeline
command: scheduler
restart: on-failure
restart: no
healthcheck:
test:
[
Expand Down Expand Up @@ -114,7 +114,7 @@ services:
minio:
image: minio/minio:RELEASE.2024-05-10T01-41-38Z
command: server /data
restart: on-failure
restart: no
ports:
- 9000:9000
- 9001:9001
Expand All @@ -139,7 +139,7 @@ services:
target-db:
image: data-inclusion/datawarehouse
build: datawarehouse
restart: on-failure
restart: no
command: -c fsync=off -c full_page_writes=off -c synchronous_commit=off -c log_statement=all
healthcheck:
test: [ "CMD", "pg_isready", "-U", "data-inclusion" ]
Expand All @@ -160,7 +160,7 @@ services:
depends_on:
target-db:
condition: service_healthy
restart: on-failure
restart: no
ports:
- ${API_PORT:-8000}:8000
environment:
Expand Down
Loading