Shirel Lugasi
08/23/2023, 12:41 PMdocker-compose up
? someone here knows what can be done?user
08/23/2023, 12:41 PMShirel Lugasi
08/23/2023, 12:43 PMerror getting credentials - err: exec: "docker-credential-desktop": executable file not found in $PATH, out: ``
Shirel Lugasi
08/23/2023, 12:44 PMShirel Lugasi
08/23/2023, 12:47 PMuser
08/23/2023, 12:47 PMShirel Lugasi
08/23/2023, 1:01 PMdocker-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: ``
user
08/23/2023, 1:01 PM.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/).