【发布时间】:2020-11-14 13:23:45
【问题描述】:
我尝试在 wsl2 上运行 tensorflow 容器,但有问题:我的笔记本没有保存。 我的 Dockerfile
FROM tensorflow/tensorflow:latest-gpu-py3-jupyter
COPY Notebooks/ Notebooks/
我运行它
docker run -it --gpus all -p 8888:8888 -v /mnt/c/tflearn/tf1/Notebooks/:/Notebooks/ tflearn1
我的笔记本没有保存(我将它保存到笔记本/路径),我不知道该怎么做,因为它以前工作过。它的构建很好,GPU 工作正常,一切都很好,但没有保存。我尝试使用 mount,但同样的问题 - 它没有保存。
【问题讨论】:
标签: docker docker-compose dockerfile docker-volume wsl-2