Skip to content

Commit

Permalink
restart containers if they fail automatically (airbytehq#3423)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhizor authored May 17, 2021
1 parent 6beb4eb commit 42ecf1f
Showing 1 changed file with 5 additions and 0 deletions.
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

0 comments on commit 42ecf1f

Please sign in to comment.