2 Commits
0.0.8 ... 0.2.0

Author SHA1 Message Date
7483095d5f add plotly
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-01-21 18:42:52 +01:00
e2e497270d pvc added
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-06-02 13:19:24 +02:00
2 changed files with 21 additions and 0 deletions

View File

@ -13,6 +13,7 @@ USER $NB_USER
RUN \
conda update -y -n base conda && \
pip install psycopg && \
pip install plotly && \
conda install -y pandas-datareader && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER

View File

@ -146,6 +146,18 @@ spec:
- X-Forwarded-User
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: jupyter-workspace
spec:
accessModes:
- ReadWriteOnce
storageClassName: nfs-client
resources:
requests:
storage: 100Mi
---
apiVersion: apps/v1
kind: Deployment
metadata:
@ -171,6 +183,14 @@ spec:
env:
- name: JUPYTER_PORT
value: "8888"
volumeMounts:
- mountPath: /home/jovyan/work
name: work
volumes:
- name: work
persistentVolumeClaim:
claimName: jupyter-workspace
---
apiVersion: v1
kind: Service