This commit is contained in:
Snoweuph 2024-10-23 23:51:01 +02:00
parent ccecc27770
commit 37c14600ea
Signed by: Snoweuph
GPG key ID: BEFC41DA223CEC55
2 changed files with 30 additions and 0 deletions

View file

@ -4,6 +4,7 @@ on:
push:
branches:
- 'master'
workflow_dispatch:
jobs:
build_act:

29
compose.yml Normal file
View file

@ -0,0 +1,29 @@
services:
rootless-docker:
image: docker:dind-rootless
container_name: rootless-docker
networks:
- internal
environment:
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- docker-socket:/var/run/docker.sock
alpine:
image: alpine:latest
container_name: alpine
depends_on:
- rootless-docker
networks:
- internal
command: sh -c "while true; do sleep 3600; done"
volumes:
- docker-socket:/var/run/docker.sock
volumes:
docker-socket:
networks:
internal:
driver: bridge