forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
87 lines (80 loc) · 1.85 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
81
82
83
84
85
86
87
version: '3'
services:
db:
restart: always
image: postgres:9.6-alpine
networks:
- internal_network
### Uncomment to enable DB persistance
volumes:
- ../postgres:/var/lib/postgresql/data
redis:
restart: always
image: redis:4.0-alpine
networks:
- internal_network
### Uncomment to enable REDIS persistance
volumes:
- ../redis:/data
es:
restart: always
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.3
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
networks:
- internal_network
#### Uncomment to enable ES persistance
volumes:
- ../elasticsearch:/usr/share/elasticsearch/data
web:
#build: .
image: tootsuite/mastodon
restart: always
env_file: ../.env.production
command: bundle exec rails s -p 3000 -b '0.0.0.0'
networks:
- external_network
- internal_network
ports:
- "3000:3000"
depends_on:
- db
- redis
- es
volumes:
- ../public/assets:/mastodon/public/assets
- ../public/packs:/mastodon/public/packs
- ../public/system:/mastodon/public/system
streaming:
#build: .
image: tootsuite/mastodon
restart: always
env_file: ../.env.production
command: yarn start
networks:
- external_network
- internal_network
ports:
- "4000:4000"
depends_on:
- db
- redis
sidekiq:
#build: .
image: tootsuite/mastodon
restart: always
env_file: ../.env.production
command: bundle exec sidekiq -q default -q mailers -q pull -q push
depends_on:
- db
- redis
networks:
- external_network
- internal_network
volumes:
- ../public/packs:/mastodon/public/packs
- ../public/system:/mastodon/public/system
networks:
external_network:
internal_network:
internal: true