forked from guardian/grid
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (42 loc) · 1.24 KB
/
docker-compose.yml
File metadata and controls
42 lines (42 loc) · 1.24 KB
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
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.18.3
environment:
ES_JAVA_OPTS: "-Xms1024m -Xmx1024m"
volumes:
- "./dev/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml"
ports:
- "9200:9200"
imgops:
build:
context: ./dev/imgops
ports:
- "9008:80"
volumes:
- "./dev/imgops/nginx.conf:/etc/nginx/nginx.conf"
cerebro:
image: lmenezes/cerebro
ports:
- "9090:9000"
localstack:
image: localstack/localstack:4.5.0
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
- "127.0.0.1:4510-4559:4510-4559" # external services port range
expose:
- 4566 # provide the imgops container with access to localstack's direct S3 endpoint
environment:
SERVICES: cloudformation,cloudwatch,dynamodb,kinesis,s3,sns,sqs,iam
DEFAULT_REGION: eu-west-1
KINESIS_ERROR_PROBABILITY: 0.0
volumes:
- "./dev/.localstack:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
oidc-provider:
build:
context: ./dev/oidc-provider
ports:
- "9014:9014"
volumes:
- "./dev/config/users.json:/etc/grid/users.json"
env_file: ./dev/.env