Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
今天我不得不将我的 Domoticz/jadahl/Synology 设置迁移到在 Docker 容器中运行的设置。虽然这没有带来任何问题,但我有一个问题。Domoticz 允许在切换开关时执行脚本。我多年来一直以这种方式运行 PHP 脚本,我想知道是否可以从 Docker 容器运行位于 Synology 上的脚本。对 Docker 来说是全新的,所以请原谅任何愚蠢的问题。
如果没有,关于如何解决这个问题的任何提示,以便我可以回到我的日常工作?
通过创建我自己的图像解决了这个问题:
FROM domoticz/domoticz:latest RUN apt-get update RUN apt-get upgrade -y RUN apt-get install etherwake wget curl php-cli php-xml php-soap -y