-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
53 lines (46 loc) · 1.06 KB
/
docker-compose.override.yml
File metadata and controls
53 lines (46 loc) · 1.06 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
43
44
45
46
47
48
49
50
51
52
53
version: "3.6"
services:
cron:
build:
target: base
volumes:
- ./cron-retrieval/retriever.sh:/home/retriever.sh
- ./cron-retrieval/results:/home/results
node_angular:
build:
context: frontend
dockerfile: Dockerfile-dev
volumes:
- /usr/src/app/node_modules
- ./frontend/angular:/usr/src/app
angular:
image: nginx
volumes:
- ./frontend/config/default.conf.dev:/etc/nginx/conf.d/default.conf
- ./frontend/config/nginx.conf:/etc/nginx/nginx.conf
ports:
- "9090:80"
depends_on:
- node_angular
backend:
image: tensorflow/tensorflow:nightly-gpu-py3-jupyter
ports:
- "8888:8888"
volumes:
- ./notebooks:/tf/notebooks
elastic:
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: docker.elastic.co/kibana/kibana:7.4.0
container_name: wow_kibana
environment:
- SERVER_NAME=localhost
- ELASTICSEARCH_HOSTS=http://elastic:9200
ulimits:
memlock:
soft: -1
hard: -1
ports:
- 5601:5601