https://thekkom.tistory.com/250 docker:: docker 명령어 모음 # docker init # -it docker exec -it db psql -U postgres # compose up docker compose up --build # Develop App and Setting docker volume create mongodb docker volume create mongodb_config docker network create mongodb docker run -it --rm -d -v mongodb:/data/ thekkom.tistory.com docker 에 비밀번호 설정을 꼭하자 RUN adduser -u 5678 --disabled-password --ge..
아이콘 의미가 무엇인지 한번씩 헷갈릴 때, 막상 검색해서 찾으면 잘 안나와서 스크랩 Field vs Function이 초반에는 엄청 헷갈림 https://code.visualstudio.com/docs/editor/intellisense#_types-of-completions IntelliSense in Visual Studio Code Learn about Visual Studio Code IntelliSense (intelligent code completion). code.visualstudio.com _
갑자기 윈도우11이 부팅이 되지 않는다. 이것저것 해보고 있지만 살아날 기미가 없다.- 일단 BIOS Set에서 VMD와 충돌이 생긴 것은 확인함. ASUS G16 LAPTOP bededit /set {default} device partition=c: bededit /set {default} osdevice partition=c: bededit /set {bootmgr} device partition=c: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/bcd-system-store-settings-for-uefi?view=windows-11 For a typical deployment scenario, you d..
git config -l 와 같은 명령어로 git 상태를 확인하다보면 (END) 가 나와도 그 다음으로 넘어가지 않는다 exit , exit(), ctrl + C, 등등 break 명령어가 안 먹어서... 이때는 "Q" 를 입력하면 된다. _
2개 계정을 사용하여 접속하기 위한 SSH 설정# FOR WINDOWS# By default the ssh-agent service is disabled. Configure it to start automatically.# Make sure you're running as an Administrator.Get-Service ssh-agent | Set-Service -StartupType Automatic# Start the serviceStart-Service ssh-agent# This should return a status of RunningGet-Service ssh-agent# Now load your key files into ssh-agentssh-add $env:USERPROFILE\.s..