-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
43 lines (38 loc) · 840 Bytes
/
docker-compose.yaml
File metadata and controls
43 lines (38 loc) · 840 Bytes
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
version: '3.9'
services:
ui:
build:
context: .
dockerfile: ./kgea/server/KGEA_UI_Dockerfile
ports:
- "8090:8090"
# depends_on:
# - "archive"
volumes:
- $HOME/.aws:/root/.aws
networks:
- default
archive:
build:
context: .
dockerfile: ./kgea/server/KGEA_Archive_Dockerfile
# environment:
# # TODO: the need for explicit AWS credentials will be removed AWS IAM Roles are fully used
# - AWS_ACCESS_KEY_ID
# - AWS_SECRET_ACCESS_KEY
# - REGION_NAME=${REGION_NAME:-us-east-1}
ports:
- "8080:8080"
# depends_on:
# - "kgx"
volumes:
- $HOME/.aws:/root/.aws
networks:
- default
memcached:
image: memcached:latest
ports:
- "11211:11211"
networks:
default:
driver: bridge