-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
137 lines (129 loc) · 3.55 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
version: '2.2'
services:
setup:
image: elasticsearch:8.2.3
volumes:
- certs:/usr/share/elasticsearch/config/certs
user: "0"
command: >
bash -c '
if [ ! -f config/certs/ca.zip ]; then
echo "Creating CA";
bin/elasticsearch-certutil ca --silent --pem -out config/certs/ca.zip;
unzip config/certs/ca.zip -d config/certs;
fi;
if [ ! -f config/certs/certs.zip ]; then
echo "Creating certs";
echo -ne \
"instances:\n"\
" - name: elasticsearch\n"\
" dns:\n"\
" - elasticsearch\n"\
" - localhost\n"\
" ip:\n"\
" - 127.0.0.1\n"\
> config/certs/instances.yml;
bin/elasticsearch-certutil cert --silent --pem -out config/certs/certs.zip --in config/certs/instances.yml --ca-cert config/certs/ca/ca.crt --ca-key config/certs/ca/ca.key;
unzip config/certs/certs.zip -d config/certs;
fi;
echo "Setting file permissions"
chown -R root:root config/certs;
find . -type d -exec chmod 750 \{\} \;;
find . -type f -exec chmod 640 \{\} \;;
echo "Waiting for Elasticsearch availability";
until curl -s --cacert config/certs/ca/ca.crt https://elasticsearch:9200 | grep -q "missing authentication credentials"; do sleep 30; done;
echo "All done!";
'
healthcheck:
test:
[
"CMD-SHELL",
"[ -f config/certs/elasticsearch/elasticsearch.crt ]"
]
interval: 1s
timeout: 5s
retries: 120
app:
build:
context: .
dockerfile: Dockerfile
depends_on:
- database
- redis
ports:
- "3000:3000"
volumes:
- .:/app
- gem_cache:/usr/local/bundle/gems
- node_modules:/app/node_modules
- certs:/app/certs
env_file:
- docker.env
- private.env
environment:
RAILS_ENV: development
stdin_open: true
tty: true
database:
image: mysql:8.0.23
ports:
- "3306:3306"
volumes:
- db_data:/var/lib/mysql
env_file:
- docker.env
- private.env
security_opt:
- seccomp:unconfined
redis:
image: redis:7
elasticsearch:
image: elasticsearch:8.2.3
volumes:
- esdata:/usr/share/elasticsearch/data
- certs:/usr/share/elasticsearch/config/certs
depends_on:
setup:
condition: service_healthy
environment:
discovery.type: single-node
ELASTIC_PASSWORD: password
xpack.security.http.ssl.enabled: "true"
xpack.security.http.ssl.key: certs/elasticsearch/elasticsearch.key
xpack.security.http.ssl.certificate: certs/elasticsearch/elasticsearch.crt
xpack.security.http.ssl.certificate_authorities: certs/ca/ca.crt
xpack.security.http.ssl.verification_mode: certificate
sidekiq:
build:
context: .
dockerfile: Dockerfile
depends_on:
- app
- database
- elasticsearch
- redis
- mailcatcher
volumes:
- .:/app
- gem_cache:/usr/local/bundle/gems
- node_modules:/app/node_modules
- certs:/app/certs
env_file:
- docker.env
- private.env
environment:
RAILS_ENV: development
entrypoint: ./entrypoints/sidekiq-entrypoint.sh
mailcatcher:
image: schickling/mailcatcher
ports:
- "1080:1080" # Web interface
- "1025:1025" # SMTP server
environment:
- MAILCATCHER_IP=0.0.0.0 # Listen on all interfaces
volumes:
gem_cache:
db_data:
node_modules:
esdata:
certs: