-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (43 loc) · 946 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
47 lines (43 loc) · 946 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: '3.8'
services:
cli:
build:
context: ./cli
dockerfile: Dockerfile
volumes:
- ./downloads:/app/downloads
- ./results:/app/results
- ./.bin:/app/.bin
environment:
- PYTHONUNBUFFERED=1
telegram-bot:
build:
context: .
dockerfile: telegram-bot/Dockerfile
volumes:
- ./temp:/app/temp
- ./results:/app/results
- ./.bin:/app/.bin
environment:
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN}
- PYTHONUNBUFFERED=1
restart: unless-stopped
depends_on:
- cli
discord-bot:
build:
context: .
dockerfile: discord-bot/Dockerfile
volumes:
- ./temp:/app/temp
- ./results:/app/results
- ./.bin:/app/.bin
environment:
- DISCORD_BOT_TOKEN=${DISCORD_BOT_TOKEN}
- PYTHONUNBUFFERED=1
restart: unless-stopped
depends_on:
- cli
networks:
default:
name: jshunter-network