17 lines
394 B
YAML
17 lines
394 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
jupyter:
|
|
container_name: jupyter
|
|
image: docker.dended.ru/jupyter:latest
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
network: host
|
|
ports:
|
|
- 8888:8888
|
|
volumes:
|
|
- ~/:/home/jovyan/work
|
|
restart: always
|
|
command: "start-notebook.sh --NotebookApp.token=''"
|