VS를 사용 하 여 WebJobs 개발 및 배포

로컬 Docker 컨테이너에서 앱 디버그 - Visual Studio

MySQL in App???

Visual Studio 2019에서 자동으로 생성해 준 dockerfile에 EXPOST2020을 추가해서 빌드를 하니까 Value cannot be null. (Parameter 'folderName') [/src/CasinoServer/Casino.Server.csproj] 이 에러가 난다

흐음........

결국 성공한 방법

  1. Project오른쪽 마우스 클릭 → Add → Container Orchestrator Support에서 docker-compose로 추가

  2. 이게 생김

    https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ac14b2a5-be09-4d49-8e00-114f02b227a4/Untitled.png

  3. docker-compose.yml을

    version: '3.4'
    
    services:
      casino.server:
        image: ${DOCKER_REGISTRY-}casinoserver
        ports:
        - "2020:2020"
        build:
          context: .
          dockerfile: CasinoServer/Dockerfile
    

    이렇게 설정해주니까 드디어 열렸다!