From 7bb3fe9f643fbee4e9251ac01d14d4f4de96a55e Mon Sep 17 00:00:00 2001 From: Ojietohamen Samuel Date: Thu, 5 Dec 2024 19:37:35 +0100 Subject: [PATCH] update mt5any terminal --- packages/mt5any/terminal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mt5any/terminal.py b/packages/mt5any/terminal.py index 5c27088..71b32b3 100644 --- a/packages/mt5any/terminal.py +++ b/packages/mt5any/terminal.py @@ -119,8 +119,8 @@ class DockerizedMT5Terminal: __exit__(exc_type, exc_val, exc_tb): Stop the container using the context manager. """ - IMAGE: ClassVar[str] = "metatrader5-terminal:latest" - FALLBACK_IMAGE: ClassVar[str] = "ghcr.io/ramin951/metatrader5-terminal:latest" + IMAGE: ClassVar[str] = "docker.io/fortesenselabs/metatrader5-terminal:latest" + FALLBACK_IMAGE: ClassVar[str] = "ghcr.io/fortesenselabs/metatrader5-terminal:latest" CONTAINER_NAME: ClassVar[str] = "itbot-mt5" PORTS: ClassVar[dict[str, int]] = {"web": 8000, "vnc": 5900, "rpyc": DEFAULT_SERVER_PORT}