tests: Add docker-compose file

This commit is contained in:
Tomas Babej 2019-01-01 10:13:31 -05:00 committed by Paul Beckingham
parent b5cf4ca56e
commit a1b3cfece4

26
docker-compose.yml Normal file
View file

@ -0,0 +1,26 @@
version: '3'
services:
test-f28:
build:
context: .
dockerfile: test/docker/fedora28
network_mode: "host"
security_opt:
- label=type:container_runtime_t
tty: true
test-ubuntu1604:
build:
context: .
dockerfile: test/docker/ubuntu1604
network_mode: "host"
security_opt:
- label=type:container_runtime_t
tty: true
test-debianstable:
build:
context: .
dockerfile: test/docker/debianstable
network_mode: "host"
security_opt:
- label=type:container_runtime_t
tty: true