-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
99 lines (91 loc) · 2.07 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
88
89
90
91
92
93
94
95
96
97
98
99
version: '3'
services:
db:
restart: always
image: postgres:9.6-alpine
networks:
- internal_network
### Uncomment to enable DB persistance
volumes:
- /opt/database/postgres:/var/lib/postgresql/data
redis:
restart: always
image: redis:4.0-alpine
networks:
- internal_network
### Uncomment to enable REDIS persistance
volumes:
- /opt/database/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:
## - /opt/database/elasticsearch:/usr/share/elasticsearch/data
web:
build: .
image: ailispaw/mastodon
restart: always
env_file: .env.production
command: sh -c "rm -f /mastodon/tmp/pids/server.pid; 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/system:/mastodon/public/system
streaming:
build: .
image: ailispaw/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: ailispaw/mastodon
restart: always
env_file: .env.production
command: bundle exec sidekiq -q default -q push -q mailers -q pull
depends_on:
- db
- redis
- mailcatcher
networks:
- external_network
- internal_network
volumes:
- ./public/system:/mastodon/public/system
mailcatcher:
image: yappabe/mailcatcher
restart: always
entrypoint: /dumb-init
command: /run.sh
networks:
- external_network
- internal_network
ports:
- "1025:1025"
- "1080:1080"
volumes:
- /usr/bin/dumb-init:/dumb-init:ro
networks:
external_network:
internal_network:
internal: true