From 5db865917255d0ed590d679455d79fef94383791 Mon Sep 17 00:00:00 2001 From: Alie Date: Mon, 25 Dec 2023 13:54:09 +0100 Subject: [PATCH] dind --- .gitea/workflows/test-dev.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test-dev.yaml b/.gitea/workflows/test-dev.yaml index e03840f..54e6e36 100644 --- a/.gitea/workflows/test-dev.yaml +++ b/.gitea/workflows/test-dev.yaml @@ -6,16 +6,16 @@ on: jobs: run-tests: container: - image: catthehacker/ubuntu:act-latest + image: docker/docker:stable-dind + #image: catthehacker/ubuntu:act-latest env: COMPOSE_FILE: compose.yaml DOCKER_USER: ${{ secrets.DOCKER_USER }} DOCKER_PASS: ${{ secrets.DOCKER_PASS }} - DOCKER_HOST: unix:///run/user/1000/docker.sock steps: - name: Checkout code uses: actions/checkout@v2 - name: Pull images - run: docker compose pull + run: dind compose pull - name: Run tests - run: docker compose run bot-api bun test \ No newline at end of file + run: dind compose run bot-api bun test \ No newline at end of file