거의 알고리즘 일기장

fly.io docker를 이용한 배포시 fly api error 본문

web

fly.io docker를 이용한 배포시 fly api error

건우권 2023. 2. 4. 20:20

nestjs 연습용 및 장난으로 만든 욕배틀 슬랙봇이 있는데, 서버를 프리티어가 참 괜찮은 fly.io에 두고 있다. 

근데, 멀쩡하던 배포라인이 갑자기 이런 에러를 뱉었다.

//in github action
Run flyctl deploy --remote-only
==> Verifying app config
--> Verified app config
==> Building image
WARN Failed to start remote builder heartbeat: You hit a Fly API error with request ID: 01GRE1QHWN2D28BQ5SYD3X63JB-lax
Error failed to fetch an image or build from source: error connecting to docker: You hit a Fly API error with request ID: 01GRE1QJG2A4T3V9EYJGQF4C70-lax


Error: Process completed with exit code 1.

뭐 이것저것 시도해봤는데.. 해결방법은 간단했다.

 

1. 기존 builder 지우기

fly destroy [builder 이름]

 

2. 다시 배포

 

3. 해결띠


https://community.fly.io/t/fly-api-error/10404/11

 

Fly API error....

Thanks @greg. I had the same issue in AMS today. I destroyed the builder with fly destroy BUILDER_APP_NAME and ran fly deploy --remote-only and that worked for me 👍

community.fly.io

커뮤니티 글들을 보면 아직 불안정한것 같다. 하지만, 프리티어는 참 괜찮으므로 사이드 프로젝트용으로는 제격이지 않을까 싶다.

반응형
Comments