From cd1b624fd5da5bee4bb42cbeeaadd77953524c3c Mon Sep 17 00:00:00 2001 From: "e.medina" Date: Wed, 29 Oct 2025 14:37:00 +0100 Subject: [PATCH] OrientDB --- orientdb/compose.yml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/orientdb/compose.yml b/orientdb/compose.yml index 550ba37..4004cae 100644 --- a/orientdb/compose.yml +++ b/orientdb/compose.yml @@ -1,13 +1,21 @@ services: +# ---------------------------------------------------------------------- +# OrientDB +# The first multimodel database in the world +# https://orientdb.dev/ orientdb: image: orientdb:3.2 - environnement: - - ORIENTDB_ROOT_PASSWORD=!ChangeMe! - ports: - - "2424:2424" - - "2480:2480" + ports: + - 2424:2424 + - 2480:2480 + environment: + ORIENTDB_ROOT_PASSWORD: "!ChangeMe!" volumes: - - config_path:/orientdb/config - - databases_path:/orientdb/databases - - backup_path:/orientdb/backup - \ No newline at end of file + - orientdb_config:/orientdb/config + - orientdb_databases:/orientdb/databases + - orientdb_backup:/orientdb/backup + +volumes: + orientdb_config: + orientdb_databases: + orientdb_backup: