removing unused role
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 6s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 18s

This commit is contained in:
shockrah 2025-05-10 14:52:32 -07:00
parent 15dfaea8db
commit e03daa62e5
2 changed files with 0 additions and 21 deletions

View File

@ -1,15 +0,0 @@
- name: Ensure docker compose directory is present
ansible.builtin.file:
path: compose
state: directory
- name: Copy in the docker-compose template
ansible.builtin.template:
src: compose.yaml
dest: compose/compose.yaml
owner: nigel
mode: "0644"
- name: Run the docker compose yaml
become: true
community.docker.docker_compose_v2:
project_src: compose
remove_orphans: true

View File

@ -1,6 +0,0 @@
services:
health:
image: nginx:latest
container_name: health
ports:
- "8080:80"