-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbatect.yml
29 lines (27 loc) · 869 Bytes
/
batect.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
containers:
build-env:
image: jupyter/scipy-notebook #jupyter/datascience-notebook
volumes:
- local: charts
container: /home/jovyan/work
options: cached
- local: imported_data
container: /home/jovyan/work/imported_data
options: cached
- local: processed_data
container: /home/jovyan/work/processed_data
options: cached
- local: raw_data
container: /home/jovyan/work/raw_data
options: cached
ports:
- local: 8888
container: 8888
tasks:
## Utility tasks
dev:
description: Start a shell in the development environment.
group: Utility tasks
run:
container: build-env
entrypoint: start-notebook.sh --ip=0.0.0.0 --allow-root --ServerApp.allow_origin="*" --ServerApp.disable_check_xsrf=True --ServerApp.allow_remote_access=True