From 9cb141bb829e2da4a89a13cfd5f6b3c00fb865db Mon Sep 17 00:00:00 2001 From: Jonas-Ian Kuche Date: Sat, 13 Apr 2024 07:35:20 +0200 Subject: [PATCH] feat: update default bind port --- frontend/code/Earthfile | 2 +- frontend/jupyter/Earthfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/code/Earthfile b/frontend/code/Earthfile index 92544c3..0623781 100644 --- a/frontend/code/Earthfile +++ b/frontend/code/Earthfile @@ -8,4 +8,4 @@ SETUP: --install-extension equinusocio.vsc-material-theme \ --install-extension equinusocio.vsc-material-theme-icons \ --install-extension ms-python.python - CMD ["code-server", "--bind-addr=0.0.0.0:8080", "."] + CMD ["code-server", "--bind-addr=0.0.0.0:8888", "."] diff --git a/frontend/jupyter/Earthfile b/frontend/jupyter/Earthfile index b8ccbe0..e8004ff 100644 --- a/frontend/jupyter/Earthfile +++ b/frontend/jupyter/Earthfile @@ -3,4 +3,4 @@ VERSION 0.8 SETUP: FUNCTION RUN micromamba install -n base -c conda-forge -y jupyterlab ipykernel ipywidgets - CMD ["jupyter", "lab"] + CMD ["jupyter", "lab", "--ip=0.0.0.0", "--port=8888"]