Chore: Updated angular and other javascript dependencies

This commit is contained in:
2021-03-18 07:11:41 +05:30
parent 4257db020d
commit 2374fd7347
7 changed files with 63 additions and 39 deletions

View File

@ -36,6 +36,11 @@
src: "files/.env"
dest: "/var/lib/{{ host_directory }}/.env"
- name: Upload the worker .env file
template:
src: "files/worker.env"
dest: "/var/lib/{{ host_directory }}/worker.env"
- name: Create barker container
docker_container:
name: "{{ host_directory }}"
@ -57,7 +62,7 @@
image: barker-worker:latest
state: started
restart_policy: "unless-stopped"
env_file: "/var/lib/{{ host_directory }}/.env"
env_file: "/var/lib/{{ host_directory }}/worker.env"
links:
- "redis:redis"