Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

docker-compose.yml 536 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. version: "3.7"
  2. services:
  3. jupyterlab-server:
  4. build:
  5. args:
  6. - username=${USER}
  7. - uid=${UID}
  8. - gid=${GID}
  9. context: ../
  10. dockerfile: docker/Dockerfile
  11. ports:
  12. - "8888:8888"
  13. volumes:
  14. - ../bin:/home/${USER}/app/bin
  15. - ../data:/home/${USER}/app/data
  16. - ../doc:/home/${USER}/app/doc
  17. - ../notebooks:/home/${USER}/app/notebooks
  18. - ../results:/home/${USER}/app/results
  19. - ../src:/home/${USER}/app/src
  20. init: true
  21. stdin_open: true
  22. tty: true
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...