-
Notifications
You must be signed in to change notification settings - Fork 40
/
docker-compose.yml
44 lines (40 loc) · 980 Bytes
/
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
services:
dx8-gateway:
build:
context: cohesion-services/dx8-gateway
target: development
container_name: dx8-gateway
ports:
- "2000:3000"
volumes:
- ./cohesion-services/dx8-gateway/node:/node
- ./cohesion-services/dx8-gateway/php:/php
- ./cohesion-services/dx8-gateway/assets:/assets
logging:
driver: "json-file"
options:
max-size: "1M"
scss-gateway:
build: cohesion-services/scss-gateway
container_name: scss-gateway
ports:
- "2001:3000"
volumes:
- ./cohesion-services/scss-gateway/node:/node
logging:
driver: "json-file"
options:
max-size: "1M"
dynamodb:
user: root
build: cohesion-services/cache/dynamodb
ports:
- '8000:8000'
dynamodb-admin:
build: cohesion-services/cache/dynamodb/admin
ports:
- '8001:8001'
environment:
DYNAMO_ENDPOINT: 'http://dynamodb:8000'
depends_on:
- dynamodb