myTestFreqAI/freqtrade/configuration/detect_environment.py
Ubuntu 17199e9a44
Some checks failed
Pre-commit auto-update / auto-update (push) Has been cancelled
first add
2025-04-21 21:11:51 +08:00

9 lines
163 B
Python

import os
def running_in_docker() -> bool:
"""
Check if we are running in a docker container
"""
return os.environ.get("FT_APP_ENV") == "docker"