-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
80 lines (75 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
services:
app:
build:
context: ./
depends_on:
- db-feb
restart: always
environment:
token_discord: ${token_discord}
token_uptime: ${token_uptime}
token_botsondiscord: ${token_botsondiscord}
token_discordbotlist: ${token_discordbotlist}
token_discords: ${token_discords}
token_discordbots: ${token_discordbots}
token_motiondevelopment: ${token_motiondevelopment}
token_saucenao: ${token_saucenao}
login_fa_cookie_a: ${login_fa_cookie_a}
login_fa_cookie_b: ${login_fa_cookie_b}
login_e621_user: ${login_e621_user}
token_e621: ${token_e621}
db_dialect: mysql
db_host: db-feb
db_name: furExplicitBot
db_user: furExplicitBot
db_passw: ${db_password}
sentryLink: ${SENTRY_LINK}
logging:
driver: "json-file"
options:
max-size: "1G"
worker_faautpost:
build:
context: .
dockerfile: ./workers/faAutopost/Dockerfile
depends_on:
- db-feb
restart: always
environment:
token_uptime_worker: ${token_uptime_worker}
login_fa_cookie_a: ${login_fa_cookie_a}
login_fa_cookie_b: ${login_fa_cookie_b}
db_dialect: mysql
db_host: db-feb
db_name: furExplicitBot
db_user: furExplicitBot
db_passw: ${db_password}
sentryLink: ${SENTRY_LINK}
logging:
driver: "json-file"
options:
max-size: "1G"
db-feb:
image: mariadb:latest
restart: always
ports:
- "${db_ip}:${db_port}:3306"
volumes:
- db_data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: ${db_password_root}
MYSQL_DATABASE: furExplicitBot
MYSQL_USER: furExplicitBot
MYSQL_PASSWORD: ${db_password}
logging:
driver: "json-file"
options:
max-size: "1G"
networks:
- default
- grafana_exposed
networks:
grafana_exposed:
external: true
volumes:
db_data: