jupyter works

This commit is contained in:
Waylon Walker 2023-11-05 14:29:04 -06:00
parent 8af5e75966
commit 04dfe716b8
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
2 changed files with 152 additions and 0 deletions

View file

@ -0,0 +1,18 @@
# docker run -p 10000:8888 quay.io/jupyter/scipy-notebook:2023-10-31
version: "2.1"
services:
jupyter:
# image: quay.io/jupyter/scipy-notebook:2023-10-31
image: amalic/jupyterlab
container_name: jupyter
ports:
- 8888
environment:
- PASSWORD=password
volumes:
- jupyter-data:/notebooks/jupyter
labels:
kompose.service.expose: jupyter.wayl.one
command: ["jupyter", "lab", "--ip", "0.0.0.0"]
volumes:
jupyter-data: