Advertisement
Guest User

Untitled

a guest
Mar 17th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. postgres:
  5. image: postgres:10.3
  6. environment:
  7. - POSTGRES_DB=opendatacube
  8. - POSTGRES_PASSWORD=opendatacubepassword
  9. - POSTGRES_USER=opendatacube
  10.  
  11. jupyter:
  12. image: opendatacube/jupyter
  13. environment:
  14. - DB_HOSTNAME=postgres
  15. - DB_USERNAME=opendatacube
  16. - DB_PASSWORD=opendatacubepassword
  17. - DB_DATABASE=opendatacube
  18. ports:
  19. - "80:8888"
  20. volumes:
  21. - ./notebooks:/notebooks
  22. command: jupyter notebook --allow-root --ip="0.0.0.0" --NotebookApp.token='secretpassword'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement