We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2ff3f commit b3227e7Copy full SHA for b3227e7
ansible/deploy-playbook.yml
@@ -104,6 +104,13 @@
104
owner: bot
105
group: bot
106
107
+ - name: Create youtube_urls.json in bot's home directory
108
+ file:
109
+ path: /home/bot/youtube_urls.json
110
+ state: touch
111
+ owner: bot
112
+ group: bot
113
+
114
- name: Start Discord Bot via docker compose
115
shell: |
116
cd /root/discord
compose.yaml
@@ -31,6 +31,11 @@ services:
31
target: /home/bot/pretix_cache.json
32
read_only: false
33
34
+ - type: bind
35
+ source: /home/bot/youtube_urls.json
36
+ target: /home/bot/youtube_urls.json
37
+ read_only: false
38
39
# read all container only logs with
40
# journalctl -u docker IMAGE_NAME=pyladiescon -f
41
logging:
0 commit comments