forked from planetary-social/ansible-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal.yml
More file actions
28 lines (22 loc) · 671 Bytes
/
local.yml
File metadata and controls
28 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- hosts: localhost
connection: local
become: true
tasks:
- name: Room -- Pull latest image and restart if needed
community.docker.docker_compose:
project_src: /home/admin/room
state: present
pull: true
remove_orphans: true
- name: graphql -- Pull latest image and restart if needed
community.docker.docker_compose:
project_src: /home/admin/graphql
state: present
pull: true
remove_orphans: true
- name: frontend -- Pull latest image and restart if needed
community.docker.docker_compose:
project_src: /home/admin/frontend
state: present
pull: true
remove_orphans: true