wip
This commit is contained in:
parent
150cce5858
commit
ce58e9db3b
1 changed files with 5 additions and 13 deletions
|
|
@ -11,23 +11,15 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
container:
|
||||||
DOCKER_HOST: tcp://dind:2375
|
image: docker:dind
|
||||||
DOCKER_TLS_CERTDIR: ""
|
options: --privileged
|
||||||
services:
|
|
||||||
dind:
|
|
||||||
image: docker:dind
|
|
||||||
env:
|
|
||||||
DOCKER_TLS_CERTDIR: ""
|
|
||||||
options: --privileged
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install docker CLI
|
- name: Start Docker daemon
|
||||||
run: apk add --no-cache docker-cli || apt-get install -y docker.io || true
|
|
||||||
|
|
||||||
- name: Wait for Docker daemon
|
|
||||||
run: |
|
run: |
|
||||||
|
nohup dockerd &>/var/log/dockerd.log &
|
||||||
until docker info >/dev/null 2>&1; do sleep 1; done
|
until docker info >/dev/null 2>&1; do sleep 1; done
|
||||||
|
|
||||||
- name: Log in to registry
|
- name: Log in to registry
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue