mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
26 lines
587 B
YAML
26 lines
587 B
YAML
version: '3'
|
|
services:
|
|
test-fedora28:
|
|
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
|