| 12345678910111213141516171819 |
- version: "3.7"
- services:
- jupyter:
- container_name: jupyter
- image: docker.dended.ru/jupyter:latest
- build:
- context: .
- dockerfile: ./Dockerfile
- network: host
- ports:
- - 8888:8888
- volumes:
- - ~/jupyter:/home/jovyan/work
- - /etc/passwd:/etc/passwd
- restart: always
- group_add:
- - users
- command: "start-notebook.sh --NotebookApp.token=''"
|