Skip to content

Commit

Permalink
Add dependencies to docker-compose (#19257)
Browse files Browse the repository at this point in the history
  • Loading branch information
gosusnp committed Nov 10, 2022
1 parent 524e274 commit 0ee55af
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker-compose.yaml
Expand Up @@ -34,6 +34,9 @@ services:
- RUN_DATABASE_MIGRATION_ON_STARTUP=${RUN_DATABASE_MIGRATION_ON_STARTUP}
networks:
- airbyte_internal
depends_on:
init:
condition: service_completed_successfully
db:
image: airbyte/db:${VERSION}
logging: *default-logging
Expand Down Expand Up @@ -113,6 +116,9 @@ services:
- 9000
networks:
- airbyte_internal
depends_on:
bootloader:
condition: service_completed_successfully
server:
image: airbyte/server:${VERSION}
logging: *default-logging
Expand Down Expand Up @@ -153,6 +159,9 @@ services:
- ${LOCAL_ROOT}:${LOCAL_ROOT}
networks:
- airbyte_internal
depends_on:
bootloader:
condition: service_completed_successfully
webapp:
image: airbyte/webapp:${VERSION}
logging: *default-logging
Expand All @@ -171,6 +180,9 @@ services:
- TRACKING_STRATEGY=${TRACKING_STRATEGY}
networks:
- airbyte_internal
depends_on:
bootloader:
condition: service_completed_successfully
airbyte-temporal:
image: airbyte/temporal:${VERSION}
logging: *default-logging
Expand Down Expand Up @@ -210,6 +222,9 @@ services:
- workspace:${WORKSPACE_ROOT}
networks:
- airbyte_internal
depends_on:
bootloader:
condition: service_completed_successfully
#airbyte-connector-builder-server: #FIXME: Uncomment this block when enabling airbyte-connector-builder
# image: airbyte/connector-builder-server:${VERSION}
# logging: *default-logging
Expand Down

0 comments on commit 0ee55af

Please sign in to comment.