Installer une imager docker sans l'assistant

https://www.google.com/search?q=C’est+quoi+le+chemin+absolu+%3F

un chemin absolu : c’est le chemin depuis la racine, un chemin relatif : c’est le chemin depuis le dossier courant.

html n’est pas un répertoire racine, il se trouve dans /var/www/

ha oui je comprends du coup ma commande dois donner ceci :

sudo docker run -v var/www/html/configmyfox:/config minims/myfox2mqtt

Il faut mettre un / devant var ?

oui, sinon c’est un chemin relatif.

rien ne t’empêche de créer dans ton répertoire /home/xav une suite de dossier var/www/html/configmyfox
du coup le chemin absolu de ces répertoire serait /home/xav/var/www/html/configmyfox
mais le répertoire /var/www/html/configmyfox existe aussi et c’est pas le même… si tu ne précises pas exactement le chemin, le système ne peut pas le deviner.


note que tout ceci est très très loin de jeedom, de l’utilisation du plugin docker2 ainsi que de docker en générale et que même sous windows cette notion existe. On pourrait encore être plus hors sujet que ce qu’on est mais ca commence à être difficile :wink:

Ca donne ceci,

2023-09-13 07:55:23,892 [INFO] [__main__:54] Starting MyFox2Mqtt 2023.9.3
2023-09-13 07:55:23,893 [INFO] [root:41] Reading config file /config/config.yaml
2023-09-13 07:55:23,894 [ERROR] [utils:43] File /config/config.yaml not found
2023-09-13 07:55:23,894 [INFO] [root:110] Init SSO
Traceback (most recent call last):
  File "main.py", line 58, in <module>
    SSO = init_sso(config=CONFIG)
  File "/app/myfox/sso/__init__.py", line 111, in init_sso
    username = config.get("myfox").get("username")
AttributeError: 'NoneType' object has no attribute 'get'

Ca donne ceci,

2023-09-13 07:55:23,892 [INFO] [__main__:54] Starting MyFox2Mqtt 2023.9.3
2023-09-13 07:55:23,893 [INFO] [root:41] Reading config file /config/config.yaml
2023-09-13 07:55:23,894 [ERROR] [utils:43] File /config/config.yaml not found
2023-09-13 07:55:23,894 [INFO] [root:110] Init SSO
Traceback (most recent call last):
  File "main.py", line 58, in <module>
    SSO = init_sso(config=CONFIG)
  File "/app/myfox/sso/__init__.py", line 111, in init_sso
    username = config.get("myfox").get("username")
AttributeError: 'NoneType' object has no attribute 'get'

j’ai un nouveau container qui est apparu dans le plug in docker management

note que tout ceci est très très loin de jeedom, de l’utilisation du plugin docker2 ainsi que de docker en générale et que même sous windows cette notion existe. On pourrait encore être plus hors sujet que ce qu’on est mais ca commence à être difficile :wink:

Je vais essayer de ne pas etre hors sujet, mais j’essaye d’intégrer mon alarme dans jeedom par le biais du plug in docker management et i ca fonctionne je pourrai tester ton plug in mqtt

j’ai un peu avancé. JE l’ai fait en mode manuel, du coup j’ai bien le fichier de config installé que je dois compléter

# MyFox APP credentials
myfox:
  username: "email@address.com"
  password: "********"
  client_id: "********"
  client_secret: "********"

  # Zones Label to check
  sites:
    - Maison

# Home Assistant Configuration
homeassistant_config:
  # Code to arm/disarm, Remove code to disable.
  code: 1234
  # Use Code on arm/disarm
  code_arm_required: false
  code_disarm_required: true

# MQTT Configuration
mqtt:
  host: 192.168.1.10
  port: 1883  # prefer SSL port if you can (not managed for now)
  username: user
  password: "********"
  client-id: myfox
  topic_prefix: "myfox2mqtt"
  ha_discover_prefix: "homeassistant"

# MyFox2MQTT
delay_site: 10  # seconds
delay_device: 60  # seconds
manual_snapshot: false

Plusieurs questions :
il faut laisser les «  » pour username etc ?

Pour la configuration mqtt je mets l’ip de mon jeedom sur lequel il y a Mosquitto d’installé c’est bien ca ?

Difficile de répondre, l’auteur n’est pas ici mais a priori oui

Le fichier est probablement un yaml (yml)?

Les strings ne doivent pas toujours obligatoirement être entourées de guillemets dans un yaml mais c’est plus clair et ça ne pose jamais un problème donc dans le doute => oui

Oui
Ainsi que port, user et password

j’ai essaye de lancer python comme indiqué j’ai ceci :


root@jeedom:/opt/myfox2mqtt/myFox2Mqtt# python3 main.py
2023-09-13 15:19:48,416 [INFO] [__main__:54] Starting MyFox2Mqtt 2023.9.3
2023-09-13 15:19:48,419 [INFO] [root:41] Reading config file None
Traceback (most recent call last):
  File "/opt/myfox2mqtt/myFox2Mqtt/main.py", line 56, in <module>
    CONFIG = read_config_file(CONFIG_FILE)
  File "/opt/myfox2mqtt/myFox2Mqtt/utils/__init__.py", line 42, in read_config_file
    if not os.path.isfile(config_file):
  File "/usr/lib/python3.9/genericpath.py", line 30, in isfile
    st = os.stat(path)
TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType
root@jeedom:/opt/myfox2mqtt/myFox2Mqtt#

je ne comprends pas ce que ca veut dire

Pourquoi tu ne tournes plus ton container maintenant que tu as fait le fichier de config?

sinon le problème c’est que la doc est incorrecte, il ne suffit pas d’appeler python3 main.py il faut passer en paramètre le chemin vers le fichier de config python3 main.py -c <path-to-config>/config.yaml

je te laisse mettre le bon chemin, je ne sais pas où est ton fichier

j’ai essayé ceci mais ca ne dois mas etre ca

root@jeedom:~# python3 main.py -c /opt/myfox2mqtt/myFox2Mqtt/config/config.yaml
python3: can't open file '/root/main.py': [Errno 2] No such file or directory
root@jeedom:~# 

quand je regarde sur filezilla le fichier config.yaml se trouve ici /opt/myfox2mqtt/myFox2Mqtt/config

Depuis le plug in docker management j’ai cliqué sur demarrer le container et dans les log j’ai ceci


2023-09-13T14:47:57.181484837Z 2023-09-13 14:47:57,181 [INFO] [__main__:54] Starting MyFox2Mqtt 2023.9.3
2023-09-13T14:47:57.181640689Z 2023-09-13 14:47:57,181 [INFO] [root:41] Reading config file /config/config.yaml
2023-09-13T14:47:57.182041341Z 2023-09-13 14:47:57,181 [ERROR] [utils:43] File /config/config.yaml not found
2023-09-13T14:47:57.182124762Z 2023-09-13 14:47:57,181 [INFO] [root:110] Init SSO
2023-09-13T14:47:57.182387842Z Traceback (most recent call last):
2023-09-13T14:47:57.182398041Z   File "main.py", line 58, in 
2023-09-13T14:47:57.182827298Z     SSO = init_sso(config=CONFIG)
2023-09-13T14:47:57.182843102Z   File "/app/myfox/sso/__init__.py", line 111, in init_sso
2023-09-13T14:47:57.183831325Z     username = config.get("myfox").get("username")
2023-09-13T14:47:57.184740637Z AttributeError: 'NoneType' object has no attribute 'get'

lis juste un peu le message d’erreur ca aidera :wink:

donc c’est pas ton fichier de config le problème là c’est qu’il ne trouve pas main.py

tu le lances avec ceci:

root@jeedom:~# python3 main.py 

alors qu’avant tu avais fait ceci:

tu n’es pas dans le même dossier et main.py ne se trouve probablement pas sur ton home (~ = le home directory du user) !

ceci fonctionnera partout car c’est un chemin absolu et pas relatif comme les précédentes lignes:

python3 /opt/myfox2mqtt/myFox2Mqtt/main.py

de nouveau, lis ce qui est écrit…

=> vérifie la config du container et que tu as bien spécifié le chemin vers le dossier dans lequel se trouve la config, ce dont on parlait ici:

je vais regarder tout ca des demain, concernant le fichier config.yaml il est pourtant la ou je l’ai trouvé dans filezilla


en fait en faisant la manipulation en mode manuel il m’a créé le fichier a cet endroit.
j’ai modifié le ficher config.yaml.example et ensuite tapé la commande pour qu’il le mette en config.yaml
J’ai fait ceci exactement
Clone the repo Go to dev branch

cd /opt/
git clone https://github.com/Minims/MyFox2MQTT.git
git checkout dev # if you want the dev branch
cd /opt/MyFox2MQTT/

Install Python3 dependencies

pip3 install -r  myFox2Mqtt/requirements.txt

Copy config file and setup your own credentials for MyFox & MQTT.

cd /opt/MyFox2MQTT/myFox2Mqtt
cp config/config.yaml.example config/config.yaml

Running

cd MyFox2MQTT/myFox2Mqtt
python3 main.py

je ne comprends pas pourquoi tu répètes la doc (qui est donc incomplète, je le sais puisque j’ai lu le code)

et je te disais:

Alors as-tu eu le temps d’avancer ?

Non je m’y remets la semaine prochaine si j’arrive à dégager un peu de temps. J’espère bien y arriver :slight_smile:

j’ai essayé ca donne ceci

root@jeedom:~# python3 /opt/myfox2mqtt/myFox2Mqtt/main.py
2023-09-18 10:42:15,931 [INFO] [__main__:54] Starting MyFox2Mqtt 2023.9.3
2023-09-18 10:42:15,931 [INFO] [root:41] Reading config file None
Traceback (most recent call last):
  File "/opt/myfox2mqtt/myFox2Mqtt/main.py", line 56, in <module>
    CONFIG = read_config_file(CONFIG_FILE)
  File "/opt/myfox2mqtt/myFox2Mqtt/utils/__init__.py", line 42, in read_config_file
    if not os.path.isfile(config_file):
  File "/usr/lib/python3.9/genericpath.py", line 30, in isfile
    st = os.stat(path)
TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType
root@jeedom:~# 

main.py est bien dans ce dossier

si je comprends bien je fais donc ceci :

root@jeedom:~# cd /opt/myfox2mqtt/myFox2Mqtt
root@jeedom:/opt/myfox2mqtt/myFox2Mqtt# python3 main.py
2023-09-18 10:49:38,600 [INFO] [__main__:54] Starting MyFox2Mqtt 2023.9.3
2023-09-18 10:49:38,602 [INFO] [root:41] Reading config file None
Traceback (most recent call last):
  File "/opt/myfox2mqtt/myFox2Mqtt/main.py", line 56, in <module>
    CONFIG = read_config_file(CONFIG_FILE)
  File "/opt/myfox2mqtt/myFox2Mqtt/utils/__init__.py", line 42, in read_config_file
    if not os.path.isfile(config_file):
  File "/usr/lib/python3.9/genericpath.py", line 30, in isfile
    st = os.stat(path)
TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType
root@jeedom:/opt/myfox2mqtt/myFox2Mqtt# 

Voici le contenu de main.py

#!/usr/bin/env python3
"""MyFox 2 MQTT"""
import argparse
import logging
import threading
from functools import partial
from signal import SIGINT, SIGTERM, signal
import time

from exceptions import MyFoxInitError
from myfox_2_mqtt import MyFox2Mqtt
from utils import close_and_exit, setup_logger, read_config_file
from mqtt import init_mqtt
from myfox.sso import init_sso
from myfox.api import MyFoxApi
from myfox.websocket import MyFoxWebsocket

VERSION = "2023.9.3"


def myfox_loop(config, mqtt_client, api):
    """MyFox 2 MQTT Loop"""
    try:
        myfox_api = MyFox2Mqtt(api=api, mqtt_client=mqtt_client, config=config)
        time.sleep(1)
        myfox_api.loop()
    except MyFoxInitError as exc:
        LOGGER.error(f"Force stopping Api {exc}")
        close_and_exit(myfox_api, 3)


def myfox_wss_loop(sso, debug, config, mqtt_client, api):
    """MyFox WSS Loop"""
    try:
        wss = MyFoxWebsocket(sso=sso, debug=debug, config=config, mqtt_client=mqtt_client, api=api)
        wss.run_forever()
    except Exception as exc:
        LOGGER.error(f"Force stopping WebSocket {exc}")
        close_and_exit(wss, 3)


if __name__ == "__main__":
    # Read Arguments
    PARSER = argparse.ArgumentParser()
    PARSER.add_argument("--verbose", "-v", action="store_true", help="verbose mode")
    PARSER.add_argument("--configuration", "-c", type=str, help="config file path")
    ARGS = PARSER.parse_args()
    DEBUG = ARGS.verbose
    CONFIG_FILE = ARGS.configuration

    # Setup Logger
    setup_logger(debug=DEBUG, filename="myFox2Mqtt.log")
    LOGGER = logging.getLogger(__name__)
    LOGGER.info(f"Starting MyFox2Mqtt {VERSION}")

    CONFIG = read_config_file(CONFIG_FILE)

    SSO = init_sso(config=CONFIG)
    API = MyFoxApi(sso=SSO)
    MQTT_CLIENT = init_mqtt(config=CONFIG, api=API)

    # Trigger Ctrl-C
    signal(SIGINT, partial(close_and_exit, MyFox2Mqtt, 0))
    signal(SIGTERM, partial(close_and_exit, MyFox2Mqtt, 0))
    signal(SIGINT, partial(close_and_exit, MyFoxWebsocket, 0))
    signal(SIGTERM, partial(close_and_exit, MyFoxWebsocket, 0))

    try:
        p1 = threading.Thread(
            target=myfox_loop,
            args=(
                CONFIG,
                MQTT_CLIENT,
                API,
            ),
        )
        # p2 = threading.Thread(
        #     target=myfox_wss_loop,
        #     args=(
        #         SSO,
        #         DEBUG,
        #         CONFIG,
        #         MQTT_CLIENT,
        #         API,
        #     ),
        # )
        p1.start()
        # p2.start()
        # p2.join()
        # while True:
        #     if not p2.is_alive():
        #         p2 = threading.Thread(
        #             target=myfox_wss_loop,
        #             args=(
        #                 SSO,
        #                 DEBUG,
        #                 CONFIG,
        #                 MQTT_CLIENT,
        #                 API,
        #             ),
        #         )
        #         p2.start()
        #         p2.join()
    except Exception as exp:
        LOGGER.error(f"Force stopping application {exp}")
        # close_and_exit(MYFOX, 3)

Le fichier de config est bien ici

/opt/myfox2mqtt/myFox2Mqtt/config

ca y est j’ai un retour en MQTT. La bonne commande etait ceci :

cd /opt/myfox2mqtt/myFox2Mqtt
python3 main.py -c config/config.yaml

dans jmqtt j’ai tout un bazar qui est remonté… maintenant je ne sais pas comment faire pour éxecuter une action d’activation ou désactivation de l’alarme. Je pense que je n’ai des que infos qui remontent

Ca tourne bien sur le terminal depuis que j’ai passé la commande par contre j’ai l’impression que ca ne tourne pas depuis un container du plug in docker jeedom car ils sont exited

Ca doit etre parce que je l’ai fait en mode manuel… et pas automatic… comment faire pour l’intégrer dans docker ?

Ca y est j’ai tout recommencé et j’ai bien le container dans docker…

Il faut donc faire ceci :

Add docker container docker run -v <PATH-TO-CONFIG-FOLDER>:/config minims/myfox2mqtt

Add config to <PATH-TO-CONFIG-FOLDER>

= un dossier ou sera hebergé la config. ET il faut au préalable avoir mis le fichier config.yaml avec toutes les infos de connection myfox dedans. Et la ca tourne directement.

Pour les commandes actions il faut ajouter ceci

Les actions sont :

    partial
    disarmed
    armed

et il faut l’envoyer dans le topic :

myFox2mqtt/{site.siteId}/command