-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
41 lines (39 loc) · 1022 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
version: '3.9'
services:
redis:
image: "redis/redis-stack:latest"
container_name: redis
ports:
- "6379:6379"
volumes:
- ./redis:/data
- ./samples/fileload/:/fileload
- ./samples/fileload/data:/fileload/data
jupyter:
image: jupyter/scipy-notebook
volumes:
- ./samples/fileload/:/home/jovyan/fileload
- ./samples/permits_large/:/home/jovyan/permits_large
- ./samples/vector_python/:/home/jovyan/vector_python
- ./samples/pythonOM/:/home/jovyan/pythonOM
- ./samples/specialist-workshop/:/home/jovyan/specialist-workshop
ports:
- 8888:8888
- 5000:5000
container_name: jupyter
environment:
- REDIS_SERVER=redis
- REDIS_PORT=6379
- REDIS_OM_URL=redis://redis:6379
- PYTHONBUFFERED=0
depends_on:
- redis
insight:
image: "redislabs/redisinsight:latest"
container_name: insight
ports:
- "8001:8001"
volumes:
- ./redisinsight:/db
depends_on:
- redis