add VM and docker compose for concourse

This commit is contained in:
Pim Kunis 2023-05-22 22:28:58 +02:00
parent 4c35512e62
commit e5a0727375
9 changed files with 107 additions and 11 deletions

View file

@ -0,0 +1,15 @@
- name: Create working directory
file:
path: /srv/concourse
state: directory
- name: Copy Docker compose
template:
src: "{{ role_path }}/docker-compose.yml.j2"
dest: /srv/concourse/docker-compose.yml
- name: Start the Docker Compose
docker_compose:
project_src: /srv/concourse
pull: true
remove_orphans: true