我正在通过docker映像使用OrientDB。我使用ETL Loader从CSV文件导入了我需要的所有数据。但是,在我重新启动docker-compose之后,所有数据都会丢失。如何持久保存当前数据库?我应该使用某些数据库导入/导出或备份技术吗?
OrientDb docker-compose文件:
orientdb:
image: orientdb:latest
ports:
- "2424:2424"
- "2480:2480"
environment:
ORIENTDB_ROOT_PASSWORD: 'rootpwd'
volumes:
- /opt/orientdb/config:/opt/orientdb/config
- /opt/orientdb/databases:/opt/orientdb/databases
- /opt/orientdb/backup:/opt/orientdb/backup
- ./import_json:/orientdb/bin/import_json
- ./dataset_csv:/orientdb/bin/dataset_csv