summaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
Diffstat (limited to 'ansible')
-rw-r--r--ansible/deploy-playbook.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/ansible/deploy-playbook.yaml b/ansible/deploy-playbook.yaml
index 3151f50..9031a5d 100644
--- a/ansible/deploy-playbook.yaml
+++ b/ansible/deploy-playbook.yaml
@@ -6,12 +6,12 @@
image_name: nginx
tasks:
- - name: Pull nginx image
+ - name: Pull app image
docker_image:
- name: "{{ default_container_image }}"
+ name: "{{ container_name }}"
source: pull
- - name: Create nginx container
+ - name: Create app container
docker_container:
name: "{{ container_name }}"
image: "{{ image }}"