docker-compose.yml 394 B

12345678910111213141516
  1. version: "3.7"
  2. services:
  3. jupyter:
  4. container_name: jupyter
  5. image: docker.dended.ru/jupyter:latest
  6. build:
  7. context: .
  8. dockerfile: ./Dockerfile
  9. network: host
  10. ports:
  11. - 8888:8888
  12. volumes:
  13. - ~/:/home/jovyan/work
  14. restart: always
  15. command: "start-notebook.sh --NotebookApp.token=''"