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