27 lines
605 B
YAML
27 lines
605 B
YAML
- yum:
|
|
name: git
|
|
state: present
|
|
|
|
- git:
|
|
repo: https://github.com/thoto/cobald
|
|
dest: "~{{unpriv_user}}/cobald-src"
|
|
version: bugfix/mixed_construction_methods
|
|
|
|
- git:
|
|
repo: https://github.com/MatterMiners/tardis
|
|
dest: "~{{unpriv_user}}/tardis-src"
|
|
version: master
|
|
|
|
- docker_container:
|
|
name: cobald-dev
|
|
image: cobald
|
|
volumes:
|
|
- "~{{unpriv_user}}/cobald:/etc/cobald"
|
|
- "~{{unpriv_user}}/cobald-src:/cobald:ro"
|
|
- "~{{unpriv_user}}/tardis-src:/tardis:ro"
|
|
state: started
|
|
detach: True
|
|
cleanup: True
|
|
interactive: True
|
|
command: /bin/bash
|