13 lines
323 B
YAML
13 lines
323 B
YAML
---
|
|
- hosts: web
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Pull the latest images and restart the services
|
|
shell: |
|
|
git pull
|
|
docker-compose --file docker-compose-production.yaml pull
|
|
docker-compose --file docker-compose-production.yaml up --detach
|
|
args:
|
|
chdir: oliverdavies.uk
|