You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi thanks for the library! I want to use it in docker containers (indeed https://github.com/jupyter/docker-stacks). It works pretty well, until I want to keep the history between container re-creations. To do so, I add a volume mount from my host to the container, e.g. the following docker compose file:
I'll probably want to try out doing exactly what you're doing to see if I can detect what's going wrong. If you give me a couple of days, I should have time.
# Or use jupyter's docker-stacks directly; This one just adds more python packages and gpu support etc
FROM cschranz/gpu-jupyter:v1.6_cuda-12.0_ubuntu-22.04
# ... other commands omitted ...
USER root
RUN set -eux ; \
chsh -s $(which zsh) ; \
sh -c "$(curl -fsSL https://install.ohmyz.sh/)"
USER ${NB_UID}
RUN set -eux ; sed -i 's/plugins=(git)/plugins=(git z)/g' /home/jovyan/.zshrc
Hi thanks for the library! I want to use it in docker containers (indeed https://github.com/jupyter/docker-stacks). It works pretty well, until I want to keep the history between container re-creations. To do so, I add a volume mount from my host to the container, e.g. the following docker compose file:
However, zsh-z fails to work implicitly now. The
.z
is also always empty.I guess it may because file locking mechanism etc. Is there any way to workaround it?
The text was updated successfully, but these errors were encountered: