forked from tgbot-collection/YYeTsBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
66 lines (59 loc) · 1.31 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
version: '3.1'
services:
redis:
image: redis:alpine
restart: always
logging:
driver: none
mongo:
image: mongo
restart: always
volumes:
- ./mongo_data/mongodb:/data/db
logging:
driver: none
yyets-web:
image: bennythink/yyetsbot
restart: unless-stopped
environment:
- mongo=mongo
- redis=redis
working_dir: /YYeTsBot/yyetsweb/
volumes:
- ./dump:/YYeTsBot/yyetsweb/templates/dump/
command: [ "python3","server.py","-h=0.0.0.0" ]
ports:
- "127.0.0.1:8888:8888"
socat:
image: alpine/socat
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
entrypoint: [ "socat", "tcp-listen:2375,fork,reuseaddr","unix-connect:/var/run/docker.sock" ]
yyets-bot:
image: bennythink/yyetsbot
depends_on:
- redis
- socat
- mongo
restart: on-failure
env_file:
- env/yyets.env
mailhog:
image: cd2team/mailhog
restart: unless-stopped
ports:
- "8025:8025"
nginx:
restart: always
image: nginx:alpine
volumes:
- ./conf:/etc/nginx/conf.d
- /home/photos:/usr/share/nginx/html/photos
- ./certs/:/etc/nginx/certs/
- ./logs:/var/log/nginx/
ports:
- "80:80"
- "443:443"
environment:
TZ: Asia/Shanghai