mirror of
https://github.com/ArthurDanjou/handson-ml3.git
synced 2026-01-14 12:14:36 +01:00
- rearranged a Dockerfile to allow for incremental build - switched running from root to "default new user" - added the (easy to opt-out) configuration to use blank password - added python-graphviz which enables DT visualization in notebooks - added nbdime for "sensible notebook comparison" - added custom command to "nbdiff" a notebook with its checkpointed version - added simple README.md
20 lines
427 B
YAML
20 lines
427 B
YAML
version: "3"
|
|
services:
|
|
handson-ml:
|
|
build:
|
|
context: ../
|
|
dockerfile: ./docker/Dockerfile
|
|
args:
|
|
- username=devel
|
|
container_name: handson-ml
|
|
image: handson-ml
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 50m
|
|
ports:
|
|
- "8888:8888"
|
|
volumes:
|
|
- ../:/home/devel/handson-ml
|
|
command: /opt/conda/bin/jupyter notebook --ip='*' --port=8888 --no-browser
|