-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (38 loc) · 956 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
version: '3'
services:
dev-stack:
build:
context: ./
dockerfile: ./docker/Dockerfile-dev
volumes:
- ../data:/app/data
- ../results:/app/results
- ../tourism_workflow:/app/main
environment:
- RESULTS_PATH=/app/results
- DATA_PATH=/app/data
- SOURCE_PATH=/app/main
entrypoint: tail -f /dev/null
gpu-stack:
build:
context: ./
dockerfile: ./docker/Dockerfile-gpu
volumes:
- ../data:/app/data
- ../results:/app/results
- ../tourism_workflow:/app/main
environment:
- RESULTS_PATH=/app/results
- DATA_PATH=/app/data
- SOURCE_PATH=/app/main
- NV_GPU=0
entrypoint: tail -f /dev/null
tensorboard:
image: tensorflow/tensorflow
network_mode: host
ports:
- "6007:6007"
volumes:
- ../results:/app/results
entrypoint: tensorboard --logdir /app/results --port 6007
#entrypoint: tail -f /dev/null