-
Notifications
You must be signed in to change notification settings - Fork 28
/
compose.yml.dist
68 lines (66 loc) · 1.97 KB
/
compose.yml.dist
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
services:
postgres:
image: postgres:13.6-alpine
container_name: flow-php-postgres
ports:
- 5432:5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres
mysql:
image: mysql:8.0.31
container_name: flow-php-mysql
ports:
- 3306:3306
environment:
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
MYSQL_DATABASE: mysql
MYSQL_ROOT_PASSWORD: root
elasticsearch:
image: elasticsearch:7.17.2
container_name: flow-php-elasticsearch
ports:
- 9200:9200
environment:
- node.name=es01
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
meilisearch:
image: getmeili/meilisearch:latest
container_name: flow-php-meilisearch
ports:
- "7700:7700"
environment:
- MEILI_MASTER_KEY=masterKey
- MEILI_NO_ANALYTICS=true
azurite:
image: mcr.microsoft.com/azure-storage/azurite
container_name: flow-php-azurite
hostname: azurite
restart: always
command: "azurite --loose --blobHost 0.0.0.0 --blobPort 10000 --location /workspace --debug /workspace/debug.log"
environment:
- AZURITE_ACCOUNTS=flowphpaccount01:flowphpkey01
ports:
- 10000:10000
volumes:
- ./var/azurite:/workspace
redis:
image: redis:latest
container_name: flow-php-redis
ports:
- "6379:6379"
localstack:
image: localstack/localstack:latest
container_name: flow-php-localstack
ports:
- "4566:4566"
environment:
- SERVICES=s3
- DEBUG=1
- DATA_DIR=/tmp/localstack/data
volumes:
- "./var/localstack:/tmp/localstack"