728x90 분류 전체보기451 airgap 환경에서 dind 이미지 생성 보호되어 있는 글 입니다. 2025. 2. 25. ibatis 비교문 지원 태그 isNull : "널일경우" isNotNull : "널이아닐경우" isEmpty : "공백일경우" isNotEmpty : "공백이아닐경우" isGreaterTan : ">" isGreaterEqual : ">=" isLessThan : "isLessEqual : "isEqual : "==" isNotEqual : "!=" 2025. 2. 20. GitHub Actions Runner Dockerfile GitHub Actions Runner Dockerfile sample FROM ubuntu:22.04# 필요한 패키지 설치RUN apt-get update && apt-get install -y curl jq git# GitHub Actions Runner 다운로드 및 설치WORKDIR /actions-runnerRUN curl -o actions-runner-linux-x64.tar.gz -L https://github.com/actions/runner/releases/download/v2.308.0/actions-runner-linux-x64-2.308.0.tar.gz \ && tar xzf ./actions-runner-linux-x64.tar.gz \ && rm actions-run.. 2025. 2. 14. github action sample GitHub Actions Workflow (.github/workflows/docker-build-push.yml)name: Build and Push to Harboron: push: branches: - main # main 브랜치에 push할 때 실행jobs: build-and-push: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Configure Docker authenticati.. 2025. 2. 12. 이전 1 2 3 4 ··· 113 다음 728x90