From 704dc57a2f9d9dd33c1fa941a8cf90b6990f6760 Mon Sep 17 00:00:00 2001 From: zach latta Date: Tue, 31 Jan 2023 18:00:22 -0500 Subject: [PATCH 1/2] Add missing flags.yml download If this option is not present, then `docker compose up -d` error with: Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /root/airbyte/flags.yml --- docs/deploying-airbyte/on-digitalocean-droplet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying-airbyte/on-digitalocean-droplet.md b/docs/deploying-airbyte/on-digitalocean-droplet.md index b9adf4d99eff..578f7a690e28 100644 --- a/docs/deploying-airbyte/on-digitalocean-droplet.md +++ b/docs/deploying-airbyte/on-digitalocean-droplet.md @@ -43,7 +43,7 @@ To install and start Airbyte : ```bash mkdir airbyte && cd airbyte - wget https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,docker-compose.yaml} + wget https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,flags.yaml,docker-compose.yaml} docker compose up -d ``` From 929f8ff99b7dcd3141d83cc3ac43d77b6e84e9d0 Mon Sep 17 00:00:00 2001 From: zach latta Date: Tue, 31 Jan 2023 18:01:56 -0500 Subject: [PATCH 2/2] flags.yaml -> flags.yml --- docs/deploying-airbyte/on-digitalocean-droplet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying-airbyte/on-digitalocean-droplet.md b/docs/deploying-airbyte/on-digitalocean-droplet.md index 578f7a690e28..de477687d53e 100644 --- a/docs/deploying-airbyte/on-digitalocean-droplet.md +++ b/docs/deploying-airbyte/on-digitalocean-droplet.md @@ -43,7 +43,7 @@ To install and start Airbyte : ```bash mkdir airbyte && cd airbyte - wget https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,flags.yaml,docker-compose.yaml} + wget https://raw.githubusercontent.com/airbytehq/airbyte/master/{.env,flags.yml,docker-compose.yaml} docker compose up -d ```