23 lines
387 B
YAML
23 lines
387 B
YAML
|
---
|
||
|
driver:
|
||
|
name: docker
|
||
|
platforms:
|
||
|
- name: debian10
|
||
|
image: nishiki/debian10:molecule
|
||
|
privileged: true
|
||
|
volumes:
|
||
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||
|
command: /bin/systemd
|
||
|
capabilities:
|
||
|
- SYS_ADMIN
|
||
|
exposed_ports:
|
||
|
- 22/tcp
|
||
|
published_ports:
|
||
|
- 0.0.0.0:2222:22/tcp
|
||
|
lint: |
|
||
|
set -e
|
||
|
yamllint .
|
||
|
ansible-lint
|
||
|
verifier:
|
||
|
name: testinfra
|