add cookies
This commit is contained in:
parent
1e8484b180
commit
4da5f18fb2
2 changed files with 7 additions and 0 deletions
|
@ -18,6 +18,12 @@
|
||||||
state: touch
|
state: touch
|
||||||
become: false
|
become: false
|
||||||
|
|
||||||
|
- name: Create cookies.txt
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ container_base_dir }}/data/cookies.txt"
|
||||||
|
state: touch
|
||||||
|
become: false
|
||||||
|
|
||||||
- name: Deploy Docker Compose and .env files
|
- name: Deploy Docker Compose and .env files
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: "{{ item.src }}"
|
src: "{{ item.src }}"
|
||||||
|
|
|
@ -6,4 +6,5 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/events.db:/app/events.db
|
- ./data/events.db:/app/events.db
|
||||||
|
- ./data/cookies.txt:/app/cookies.txt:ro
|
||||||
tty: true
|
tty: true
|
Loading…
Add table
Reference in a new issue