-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (46 loc) · 1.16 KB
/
docker-compose.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "3.6"
volumes:
filman_server:
driver: local
networks:
db:
driver: bridge
services:
filman_server:
container_name: filman_server
image: suchencjusz/filman_server:main
ports:
- "8000:8000"
environment:
- SENTRY_ENABLED=false
- SENTRY_DSN=
# if you wish to use real sql db instead of sqlite uncomment this line (it is better way ofc)
# - SQLALCHEMY_DATABASE_URL=mysql://root:root1234@mariadb/filman_db
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- db
restart: unless-stopped
filman_discord:
container_name: filman_discord
image: suchencjusz/filman_discord:main
depends_on:
- filman_server
environment:
- DISCORD_TOKEN= your discord bot token goes here
- LOG_LEVEL=DEBUG
networks:
- db
restart: unless-stopped
filman_crawler:
container_name: filman_crawler
image: suchencjusz/filman_crawler:main
depends_on:
- filman_server
environment:
- CORE_ENDPOINT=http://filman_server:8000
- SENTRY_ENABLED=false
- SENTRY_DSN=
networks:
- db
restart: unless-stopped