Config/#252 docker 컨테이너 백그라운드 실행 및 카카오 로그인 redirect url 변경 #317
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Workflow | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
docker: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Start docker container | |
run: docker-compose -f "docker-compose.yml" up -d --build | |
- name: Stop containers | |
if: always() | |
run: docker-compose -f "docker-compose.yml" down |