|
2 | 2 | dependency:
|
3 | 3 | name: galaxy
|
4 | 4 | driver:
|
5 |
| - name: docker |
| 5 | + name: podman |
6 | 6 | platforms:
|
7 |
| - - name: leap15_4 |
8 |
| - image: registry.opensuse.org/opensuse/leap:15.4 |
9 |
| - dockerfile: Dockerfile.leap15_4 |
| 7 | + - name: leap15_5 |
| 8 | + image: registry.opensuse.org/opensuse/leap:15.5 |
| 9 | + dockerfile: Containerfile.leap15_5 |
10 | 10 | command: ${MOLECULE_DOCKER_COMMAND:-"/usr/sbin/init"}
|
11 |
| - privileged: true |
12 |
| - cgroupns: host |
| 11 | + systemd: true |
13 | 12 | tmpfs:
|
14 |
| - - /run |
15 |
| - - /tmp |
16 |
| - - name: bullseye |
17 |
| - image: docker.io/debian:bullseye |
18 |
| - dockerfile: Dockerfile.bullseye |
19 |
| - command: ${MOLECULE_DOCKER_COMMAND:-"/sbin/init"} |
20 |
| - privileged: true |
21 |
| - cgroupns: host |
| 13 | + "/tmp": "exec" |
| 14 | + "/run": "rw,noexec,nosuid,nodev" |
| 15 | + - name: leap15_6 |
| 16 | + image: registry.opensuse.org/opensuse/leap:15.6 |
| 17 | + dockerfile: Containerfile.leap15_6 |
| 18 | + command: ${MOLECULE_DOCKER_COMMAND:-"/usr/sbin/init"} |
| 19 | + systemd: true |
22 | 20 | tmpfs:
|
23 |
| - - /run |
24 |
| - - /tmp |
| 21 | + "/tmp": "exec" |
| 22 | + "/run": "rw,noexec,nosuid,nodev" |
25 | 23 | - name: bookworm
|
26 | 24 | image: docker.io/debian:bookworm
|
27 |
| - dockerfile: Dockerfile.bookworm |
| 25 | + dockerfile: Containerfile.bookworm |
28 | 26 | command: ${MOLECULE_DOCKER_COMMAND:-"/sbin/init"}
|
29 |
| - privileged: true |
30 |
| - cgroupns: host |
| 27 | + systemd: true |
31 | 28 | tmpfs:
|
32 |
| - - /run |
33 |
| - - /tmp |
| 29 | + "/tmp": "exec" |
| 30 | + "/run": "rw,noexec,nosuid,nodev" |
34 | 31 | provisioner:
|
35 | 32 | name: ansible
|
36 | 33 | inventory:
|
37 | 34 | host_vars:
|
38 |
| - leap15_4: |
| 35 | + leap15_5: |
| 36 | + vhosts_dir: "/etc/nginx/vhosts.d" |
| 37 | + deploy_nginx_config: true |
| 38 | + ansible_python_interpreter: "/usr/bin/python3.11" |
| 39 | + leap15_6: |
39 | 40 | vhosts_dir: "/etc/nginx/vhosts.d"
|
40 | 41 | deploy_nginx_config: true
|
| 42 | + ansible_python_interpreter: "/usr/bin/python3.11" |
41 | 43 | bullseye:
|
42 | 44 | vhosts_dir: "/etc/nginx/sites-enabled"
|
43 | 45 | deploy_nginx_config: false
|
|
0 commit comments