forked from stackernews/stacker.news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
115 lines (115 loc) · 2.5 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
version: "3"
services:
db:
container_name: db
build: ./db
restart: always
expose:
- "5432"
ports:
- "5431:5432"
env_file:
- ./.env.sample
volumes:
- db:/var/lib/postgresql/data
app:
container_name: app
build: ./
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 10s
timeout: 10s
retries: 10
start_period: 1m30s
depends_on:
- db
env_file:
- ./.env.sample
ports:
- "3000:3000"
volumes:
- ./:/app
links:
- db
- opensearch
worker:
container_name: worker
build: ./worker
depends_on:
db:
condition: service_started
app:
condition: service_healthy
env_file:
- ./.env.sample
ports:
- "8080:8080"
volumes:
- ./:/app
links:
- db
- app
- opensearch
entrypoint: ["/bin/sh", "-c"]
command:
- npm run worker
imgproxy:
container_name: imgproxy
image: darthsim/imgproxy:v3.18.1
healthcheck:
test: [ "CMD", "imgproxy", "health" ]
timeout: 10s
interval: 10s
retries: 3
restart: always
env_file:
- ./.env.sample
expose:
- "8080"
ports:
- "3001:8080"
links:
- app
opensearch:
image: opensearchproject/opensearch:latest
container_name: opensearch
environment:
- discovery.type=single-node
- plugins.security.disabled=true
ports:
- 9200:9200 # REST API
- 9600:9600 # Performance Analyzer
volumes:
- os:/usr/share/opensearch/data
- ./:/app
command: >
bash -c '
set -m
/usr/share/opensearch/opensearch-docker-entrypoint.sh &
until curl -sS "http://localhost:9200/_cat/health?h=status" -ku admin:admin | grep -q "green\|yellow"; do
echo "Waiting for OpenSearch to start..."
sleep 1
done
echo "OpenSearch started."
curl -X PUT "http://localhost:9200/item" -ku admin:admin
echo "OpenSearch index created."
fg
'
os-dashboard:
image: opensearchproject/opensearch-dashboards:latest
container_name: os-dashboard
environment:
- opensearch.ssl.verificationMode=none
- server.ssl.enabled=false
- plugins.security.disabled=true
- DISABLE_SECURITY_DASHBOARDS_PLUGIN=true
- OPENSEARCH_HOSTS=http://opensearch:9200
ports:
- 5601:5601
expose:
- "5601"
links:
- opensearch
volumes:
db:
os: