Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 docker 容器中运行 errbot,我们执行了 !backup 并且我们有 backup.py,但是当我启动 docker 容器时它只运行 /app/venv/bin/run.sh 但我无法通过 -r / srv/backup.py 来恢复我的所有数据。
有任何想法吗?
所有数据都是安全的,因为 /srv 是已安装的卷
我认为如果您在容器中运行 Errbot 最好是使用真实数据库运行它以实现持久性(例如 redis)。
然后你可以简单地backup.py从任何地方运行(包括你的开发机器)。
backup.py
更好的是,您可以直接备份您的 redis。