-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
44 lines (40 loc) · 892 Bytes
/
compose.yaml
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
services:
meilisearch:
# TODO Upgrade to v1.10
image: getmeili/meilisearch:v1.8.0
env_file:
- ./.env
ports:
- "7700:7700"
volumes:
- "meilisearch:/meili_data:rw"
keydb:
image: eqalpha/keydb:alpine_x86_64_v6.3.2
ports:
- "6379:6379"
volumes:
- "keydb:/data:rw"
aws:
image: minio/minio:RELEASE.2024-05-28T17-19-04Z
environment:
MINIO_ROOT_USER: "admin"
MINIO_ROOT_PASSWORD: "password"
command: 'server /data --console-address ":9090"'
volumes:
- "aws:/data:rw"
ports:
- "9000:9000"
- "9090:9090"
twitter_scrapper:
build:
context: twitter-scrapper
volumes:
- "./twitter-scrapper/accounts.db:/srv/accounts.db:rw"
- "./twitter-scrapper/accounts.db:/srv/accounts.txt:rw"
ports:
- "8080:8000"
volumes:
aws:
keydb:
meilisearch:
s3: