forked from guardian/grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (44 loc) · 1.31 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
version: '3.7'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.2
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:0.12.3
platform: 'linux/x86_64'
ports:
- "4566:4566" # localstack's service proxy endpoint
- "4572:4572" # localstack's direct S3 endpoint, needed for image and image-origin buckets (see nginx-mappings.yml)
expose:
- 4566 # provide the imgops container with access to localstack's direct S3 endpoint
environment:
SERVICES: cloudformation,cloudwatch,dynamodb,kinesis,s3,sns,sqs
DEFAULT_REGION: eu-west-1
KINESIS_ERROR_PROBABILITY: 0.0
DATA_DIR: /tmp/localstack/data
volumes:
- './dev/.localstack:/tmp/localstack'
oidc-provider:
build:
context: ./dev/oidc-provider
ports:
- "9014:9014"
volumes:
- "./dev/config/users.json:/etc/grid/users.json"
env_file: ./dev/.env