hi, trying to deploy airbyte on my local environme...
# help-api-cli-orchestration
s
hi, trying to deploy airbyte on my local environment and failing when trying to run
docker-compose up
? someone here knows what can be done?
u
New message text here
s
this is the error:
Copy code
error getting credentials - err: exec: "docker-credential-desktop": executable file not found in $PATH, out: ``
do you know how to fix it?
@kapa.ai
u
Sorry @Shirel Lugasi, I seem to be having a bit of trouble. Don't worry though, I've pinged my support folks and they will try to fix me up! 🧑‍💻 Perhaps try again in 5mins?
s
@kapa.ai this instructions doesn't work for me, I get:
Copy code
docker-compose up
WARN[0000] The "DEPLOYMENT_MODE" variable is not set. Defaulting to a blank string.
WARN[0000] The "CDK_VERSION" variable is not set. Defaulting to a blank string.
WARN[0000] The "DEPLOYMENT_MODE" variable is not set. Defaulting to a blank string.
WARN[0000] The "PYTHON_VERSION" variable is not set. Defaulting to a blank string.
WARN[0000] The "APPLY_FIELD_SELECTION" variable is not set. Defaulting to a blank string.
WARN[0000] The "DEPLOYMENT_MODE" variable is not set. Defaulting to a blank string.
WARN[0000] The "FIELD_SELECTION_WORKSPACES" variable is not set. Defaulting to a blank string.
WARN[0000] The "JOB_ERROR_REPORTING_SENTRY_DSN" variable is not set. Defaulting to a blank string.
WARN[0000] The "LAUNCHDARKLY_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOG_CONNECTOR_MESSAGES" variable is not set. Defaulting to a blank string.
WARN[0000] The "SECRET_PERSISTENCE" variable is not set. Defaulting to a blank string.
WARN[0000] The "GITHUB_STORE_BRANCH" variable is not set. Defaulting to a blank string.
WARN[0000] The "JOB_ERROR_REPORTING_SENTRY_DSN" variable is not set. Defaulting to a blank string.
WARN[0000] The "LAUNCHDARKLY_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "NEW_SCHEDULER" variable is not set. Defaulting to a blank string.
WARN[0000] The "SECRET_PERSISTENCE" variable is not set. Defaulting to a blank string.
WARN[0000] The "WORKER_ENVIRONMENT" variable is not set. Defaulting to a blank string.
WARN[0000] The "DEPLOYMENT_MODE" variable is not set. Defaulting to a blank string.
WARN[0000] The "TEMPORAL_HISTORY_RETENTION_IN_DAYS" variable is not set. Defaulting to a blank string.
WARN[0000] The "UPDATE_DEFINITIONS_CRON_ENABLED" variable is not set. Defaulting to a blank string.
[+] Running 0/0
 ⠋ webapp Pulling                                                                                                                                                 0.0s
 ⠋ airbyte-temporal Pulling                                                                                                                                       0.0s
 ⠋ bootloader Pulling                                                                                                                                             0.0s
 ⠋ airbyte-connector-builder-server Pulling                                                                                                                       0.0s
 ⠋ airbyte-api-server Pulling                                                                                                                                     0.0s
 ⠋ server Pulling                                                                                                                                                 0.0s
 ⠋ airbyte-proxy Pulling                                                                                                                                          0.0s
 ⠋ init Pulling                                                                                                                                                   0.0s
 ⠋ worker Pulling                                                                                                                                                 0.0s
 ⠋ db Pulling                                                                                                                                                     0.0s
 ⠋ airbyte-cron Pulling                                                                                                                                           0.0s
error getting credentials - err: exec: "docker-credential-desktop": executable file not found in $PATH, out: ``
u
It seems like you're having trouble with Docker Compose not finding certain environment variables and having issues with Docker credentials. The warnings about the environment variables not being set are not necessarily a problem, as Docker Compose will use default values if no environment variable is set. However, if you want to set specific values for these variables, you can do so in a
.env
file in the same directory as your
docker-compose.yml
file. The error message `error getting credentials - err: exec: "docker-credential-desktop": executable file not found in $PATH, out: ````` indicates that Docker is having trouble finding the
docker-credential-desktop
executable, which is used to manage Docker credentials. Here are a few things you can try to resolve this issue: 1. Ensure that Docker is properly installed and running on your machine. You can verify this by running
docker version
in your terminal. 2. Check if
docker-credential-desktop
is installed and in your system's PATH. You can do this by running
which docker-credential-desktop
in your terminal. If it's not found, you may need to install it or add it to your PATH. 3. Try logging out and logging back into Docker. You can do this by running
docker logout
followed by
docker login
. If you're still having trouble, you might find it helpful to refer back to the [Airbyte documentation](https://docs.airbyte.com) or ask for help in the [Airbyte community Slack](https://airbytehq.slack.com/archives/C021JANJ6TY/).