-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose-full.yml
66 lines (65 loc) · 1.33 KB
/
compose-full.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: "2"
services:
redis:
image: redis
ports:
- "6379:6379"
volumes:
- "redisData:/data"
neo4j:
build:
context: src/neo4j-graph-algorithms
dockerfile: Dockerfile
ports:
- "7474:7474"
- "7687:7687"
environment:
- "NEO4J_ACCEPT_LICENSE_AGREEMENT=yes"
- "NEO4J_AUTH=neo4j/test"
volumes:
- "./neo4j_data/data:/data"
- "./neo4j_data/logs:/logs"
backend:
build:
context: src/32de-python
dockerfile: Dockerfile
ports:
- "8000:8000"
environment:
- "METAEXP_DEV=true"
depends_on:
- neo4j
- redis
interface-dev:
build:
context: src/32de-UI
dockerfile: Dockerfile.dev
depends_on:
- backend
environment:
- "REACT_APP_API_HOST=http://localhost:8000/"
entrypoint:
- npm
- start
ports:
- "3000:3000"
# interface-production:
# build:
# context: src/32de-UI
# dockerfile: Dockerfile.production
# depends_on:
# - interface-dev
# volumes:
# - "productionUIData:/usr/src/pika/build/"
# ui-server:
# build:
# dockerfile: Dockerfile
# ports:
# - "80:80"
# depends_on:
# - interface-production
# volumes:
# - "productionUIData:/usr/share/nginx/html"
volumes:
redisData:
productionUIData: