tests: Add docker-compose file

This commit is contained in:
Tomas Babej 2019-01-01 10:13:31 -05:00
parent a7baa9fef2
commit 156f9c5270

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