-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
51 lines (51 loc) · 1.02 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
services:
rocky8puppet8bolt:
build:
context: .
dockerfile: tests/redhat/Dockerfile
args:
osrepo: aursu/rockylinux
os: $RL8
osmajor: 8
platform: puppet8
privileged: true
cap_add:
- SYS_ADMIN
tmpfs:
- /run
- /tmp
user: root
image: "aursu/rockylinux:${RL8TAG}-puppet8-bolt"
rocky9puppet8bolt:
build:
context: .
dockerfile: tests/redhat/Dockerfile
args:
osrepo: aursu/rockylinux
os: $RL9
osmajor: 9
platform: puppet8
privileged: true
cap_add:
- SYS_ADMIN
tmpfs:
- /run
- /tmp
user: root
image: "aursu/rockylinux:${RL9TAG}-puppet8-bolt"
ubuntu22puppet8bolt:
build:
context: .
dockerfile: tests/ubuntu/Dockerfile
args:
os: $U22
codename: $U22CODE
platform: puppet8
privileged: true
cap_add:
- SYS_ADMIN
tmpfs:
- /run
- /tmp
user: root
image: "aursu/ubuntu:${U22TAG}-puppet8-bolt"