Skip to content

Commit

Permalink
changing url for button
Browse files Browse the repository at this point in the history
  • Loading branch information
srirag21 committed Jul 17, 2024
1 parent ac8e244 commit a3bfe71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ FROM continuumio/miniconda3

LABEL maintainer="Srinidhi Raghavendran [email protected]"

# ARG http_proxy
# ARG https_proxy
ARG http_proxy
ARG https_proxy

# ENV http_proxy=${http_proxy}
# ENV https_proxy=${https_proxy}
ENV http_proxy=${http_proxy}
ENV https_proxy=${https_proxy}
ENV JUPYTERHUB_IP=0.0.0.0
ENV JUPYTERHUB_PORT=8000

Expand Down
2 changes: 1 addition & 1 deletion st_app/pages/Launch_Your_Server.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def launch():
if process.returncode == 0:
progress_bar.progress(100)
st.success('Server started successfully!')
st.link_button("Click Here", "http://100.0.0.0:87")
st.link_button("Click Here", "http://100.20.56.193:87")
else:
stderr = process.stderr.read()
st.error('Server failed to start')
Expand Down

0 comments on commit a3bfe71

Please sign in to comment.