Python code serves as a client that controls and queries a dome (DragonFly Dome) controller over a network, allowing it to send commands, and fetch relay and sensor data remotely.
Once the container is running you can open the API at http://
This Docker container provides an isolated environment for running a server that interfaces with the DragonFly Dome controller, allowing remote command sending and data retrieval.
These instructions will cover usage information and for the docker container.
The image is available on the Docker Hub at robbrad182/dragonfly-dome-controller:latest
You need Docker installed on your system. You can download it from Docker's website.
Clone the repository to get the required files:
git clone https://github.com/robbrad/lunaticoastro-dragonfly-controller.git
cd lunaticoastro-dragonfly-controller
Build the Docker image using the following command:
docker build -t dragonfly-dome-controller .
This command builds the Docker image with the tag dragonfly-dome-controller
, using the Dockerfile from the current directory.
You need to set the following environment variables:
DRAGONFLY_IP
: IP address of the DragonFly Dome controller.DRAGONFLY_PORT
: Port on which the DragonFly Dome controller is listening.These can be set directly in the docker run command or through a .env
file.
To run the container with the environment variables set, use the following command:
bashCopy code
docker run -d -p 8080:8080 --env DRAGONFLY_IP=192.168.x.x --env DRAGONFLY_PORT=10000 dragonfly-dome-controller
Replace 192.168.x.x
with the actual IP address of your DragonFly Dome controller.
docker ps
and then stop it with docker stop <container-id>
.docker rm <container-id>
.docker logs <container-id>
.This project is licensed under the MIT License - see the LICENSE.md file for details.