mirror of
https://github.com/NoCLin/LightMirrors
synced 2025-07-28 21:12:12 +08:00
26 lines
464 B
YAML
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
|