0

我正在通过 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
4

0 回答 0