2021-07-09 22:00:34 +00:00
|
|
|
---
|
|
|
|
- hosts: web
|
2021-07-24 11:17:41 +00:00
|
|
|
gather_facts: false
|
2021-07-09 22:00:34 +00:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Pull the latest images and restart the services
|
|
|
|
shell: |
|
2021-08-17 21:03:20 +00:00
|
|
|
git pull
|
2021-07-09 22:00:34 +00:00
|
|
|
docker-compose --file docker-compose-production.yaml pull
|
|
|
|
docker-compose --file docker-compose-production.yaml up --detach
|
|
|
|
args:
|
|
|
|
chdir: oliverdavies.uk
|