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

🎉 restart core containers if they fail automatically #3423

Merged
merged 1 commit into from
May 17, 2021
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
5 changes: 5 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
db:
image: airbyte/db:${VERSION}
container_name: airbyte-db
restart: unless-stopped
environment:
- POSTGRES_USER=${DATABASE_USER}
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
Expand All @@ -30,6 +31,7 @@ services:
scheduler:
image: airbyte/scheduler:${VERSION}
container_name: airbyte-scheduler
restart: unless-stopped
environment:
- WEBAPP_URL=${WEBAPP_URL}
- WAIT_BEFORE_HOSTS=5
Expand All @@ -55,6 +57,7 @@ services:
server:
image: airbyte/server:${VERSION}
container_name: airbyte-server
restart: unless-stopped
environment:
- WEBAPP_URL=${WEBAPP_URL}
- WAIT_BEFORE_HOSTS=5
Expand All @@ -77,6 +80,7 @@ services:
webapp:
image: airbyte/webapp:${VERSION}
container_name: airbyte-webapp
restart: unless-stopped
ports:
- 8000:80
environment:
Expand All @@ -89,6 +93,7 @@ services:
airbyte-temporal:
image: temporalio/auto-setup:1.7.0
container_name: airbyte-temporal
restart: unless-stopped
ports:
- 7233:7233
environment:
Expand Down