23 lines
507 B
YAML
23 lines
507 B
YAML
version: "3"
|
|
services:
|
|
handson-ml:
|
|
build:
|
|
context: ../
|
|
dockerfile: ./docker/Dockerfile
|
|
args:
|
|
- username=devel
|
|
- userid=1000
|
|
container_name: handson-ml
|
|
image: handson-ml
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 50m
|
|
ports:
|
|
- "8888:8888"
|
|
- "6006:6006"
|
|
volumes:
|
|
- ../:/home/devel/handson-ml
|
|
command: /opt/conda/bin/jupyter notebook --ip='0.0.0.0' --port=8888 --no-browser
|