forked from tgbot-collection/YYeTsBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
59 lines (53 loc) · 1.18 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
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
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-web:
image: bennythink/yyetsbot
restart: unless-stopped
environment:
- mongo=mongo
working_dir: /YYeTsBot/yyetsweb/
volumes:
- ./data:/YYeTsBot/yyetsweb/data/
command: [ "python3","server.py","-h=0.0.0.0" ]
ports:
- 127.0.0.1:8888:8888
yyets-bot:
image: bennythink/yyetsbot
depends_on:
- redis
- socat
- mongo
restart: on-failure
env_file:
- env/yyets.env
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