DrawingProcess
드프 DrawingProcess
DrawingProcess
전체 방문자
오늘
어제
«   2025/06   »
일 월 화 수 목 금 토
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
  • 분류 전체보기 (964)
    • Profile & Branding (22)
      • Career (15)
    • IT Trends (254)
      • Conference, Faire (Experien.. (31)
      • News (187)
      • Youtube (19)
      • TED (8)
      • Web Page (2)
      • IT: Etc... (6)
    • Contents (97)
      • Book (66)
      • Lecture (31)
    • Project Process (94)
      • Ideation (0)
      • Study Report (34)
      • Challenge & Award (22)
      • 1Day1Process (5)
      • Making (5)
      • KRC-FTC (Team TC(5031, 5048.. (10)
      • GCP (GlobalCitizenProject) (15)
    • Study: ComputerScience(CS) (72)
      • CS: Basic (9)
      • CS: Database(SQL) (5)
      • CS: Network (14)
      • CS: OperatingSystem (3)
      • CS: Linux (39)
      • CS: Etc... (2)
    • Study: Software(SW) (95)
      • SW: Language (29)
      • SW: Algorithms (1)
      • SW: DataStructure & DesignP.. (1)
      • SW: Opensource (15)
      • SW: Error Bug Fix (43)
      • SW: Etc... (6)
    • Study: Artificial Intellige.. (149)
      • AI: Research (1)
      • AI: 2D Vision(Det, Seg, Tra.. (35)
      • AI: 3D Vision (70)
      • AI: MultiModal (3)
      • AI: SLAM (0)
      • AI: Light Weight(LW) (3)
      • AI: Data Pipeline (7)
      • AI: Machine Learning(ML) (1)
    • Study: Robotics(Robot) (33)
      • Robot: ROS(Robot Operating .. (9)
      • Robot: Positioning (8)
      • Robot: Planning & Control (7)
    • Study: DeveloperTools(DevTo.. (83)
      • DevTool: Git (12)
      • DevTool: CMake (13)
      • DevTool: NoSQL(Elastic, Mon.. (25)
      • DevTool: Container (17)
      • DevTool: IDE (11)
      • DevTool: CloudComputing (4)
    • 인생을 살면서 (64)
      • 나의 취미들 (7)
      • 나의 생각들 (42)
      • 여행을 떠나자~ (10)
      • 분기별 회고 (5)

개발자 명언

“ 매주 목요일마다 당신이 항상 하던대로 신발끈을 묶으면 신발이 폭발한다고 생각해보라.
컴퓨터를 사용할 때는 이런 일이 항상 일어나는데도 아무도 불평할 생각을 안 한다. ”

- Jef Raskin

맥의 아버지 - 애플컴퓨터의 매킨토시 프로젝트를 주도

인기 글

최근 글

최근 댓글

티스토리

hELLO · Designed By 정상우.
DrawingProcess

드프 DrawingProcess

Study: Software(SW)/SW: Error Bug Fix

[Error Fix] 'exec: "docker-credential-desktop.exe": executable file not found in $PATH' 오류 해결(feat. ~/.docker/config.js)

2023. 5. 2. 17:21
반응형

# 문제 상황

'docker build'를 하는 과정에서 다음과 같은 오류가 발생하였습니다.

 => ERROR [internal] load metadata for docker.io/library/ubuntu:18.04                                                                                                                                                                   2.1s
------
 > [internal] load metadata for docker.io/library/ubuntu:18.04:
------
failed to solve with frontend dockerfile.v0: failed to create LLB definition: rpc error: code = Unknown desc = error getting credentials - err: exec: "docker-credential-desktop.exe": executable file not found in $PATH, out: ``
Makefile:26: recipe for target 'build-local' failed
make: *** [build-local] Error 1

# 해결 방안

In ~/.docker/config.json change credsStore to credStore:

% nano ~/.docker/config.json
{
  "auths": {},
  "credStore": "desktop",
  "experimental": "enabled"
}

credsStore 란?

credsStore 속성은 기본 자격증명 저장소로 사용할 외부 바이너리를 지정합니다. 이 속성이 설정되어 있으면 docker 로그인은 $PATH에 표시되는 docker-credential-<value>로 지정된 바이너리에 자격 증명을 저장하려고 시도합니다. 이 속성을 설정하지 않으면 자격 증명이 구성의 auths 속성에 저장됩니다.

추가: "experimental"

"experimental": "enabled" docker에서 제공하는 실험적인 기능을 사용할지에 대한 설정입니다. 대표적으로 buildx가 있으며 이는 다른 플렛폼으로 이미지를 빌드하기 위해 사용합니다.

# 참고

[Blog] Docker-credential-desktop.exe executable file not found in $PATH using wsl2: https://forums.docker.com/t/docker-credential-desktop-exe-executable-file-not-found-in-path-using-wsl2/100225

반응형
저작자표시 비영리 변경금지 (새창열림)

'Study: Software(SW) > SW: Error Bug Fix' 카테고리의 다른 글

[Error fix] ros2 명령어가 실행되지 않는 문제... (설치 문제 아님)  (0) 2023.05.21
[Error fix] fatal error: 'uWS/uWS.h' file not found 오류 해결 (feat. uWebSockets)  (0) 2023.05.15
[Error Fix] ImportError: cannot import name 'constants' from partially initialized module 'zmq.backend.cython' 오류 해결: jupyter notebook 실행시 발생  (0) 2023.05.01
[Error Fix] E: Sub-process /usr/bin/dpkg returned an error code (1) 오류 해결: broken package  (0) 2023.04.30
[Error Fix] 'CMake find_package' 문제 해결(feat. MacOS Qt5 FindQt5.cmake)  (0) 2023.04.10
    'Study: Software(SW)/SW: Error Bug Fix' 카테고리의 다른 글
    • [Error fix] ros2 명령어가 실행되지 않는 문제... (설치 문제 아님)
    • [Error fix] fatal error: 'uWS/uWS.h' file not found 오류 해결 (feat. uWebSockets)
    • [Error Fix] ImportError: cannot import name 'constants' from partially initialized module 'zmq.backend.cython' 오류 해결: jupyter notebook 실행시 발생
    • [Error Fix] E: Sub-process /usr/bin/dpkg returned an error code (1) 오류 해결: broken package
    DrawingProcess
    DrawingProcess
    과정을 그리자!

    티스토리툴바