docker-compose.yml 479 B

12345678910111213141516171819
  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. - ~/jupyter:/home/jovyan/work
  14. - /etc/passwd:/etc/passwd
  15. restart: always
  16. group_add:
  17. - users
  18. command: "start-notebook.sh --NotebookApp.token=''"