LightMirrors/test/docker-compose.yml
2024-07-06 11:56:51 +08:00

26 lines
464 B
YAML

version: "3.3"
services:
docker_test:
image: docker:dind
volumes:
- ./scripts:/scripts
command: sh /scripts/docker.sh
network_mode: host
privileged: true
python_test:
image: python:3-alpine
volumes:
- ./scripts:/scripts
command: sh /scripts/python.sh
network_mode: host
golang_test:
image: golang:alpine
volumes:
- ./scripts:/scripts
command: sh /scripts/golang.sh
network_mode: host