You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't have an apache docker image for you but I have a nginx docker image instead.
If you just quickly want to simple setup you can execute the following line in the terminal (Note, change folder path.): docker run -it --rm -d -p 8881:80 --name Hue-Browser-Controller -v /PATH/TO/FOLDER/Hue-Browser-Controller:/usr/share/nginx/html nginx
I also have a Dockerfile and a docker-compose.yaml
Place both files in a folder and just run docker-compose up -d when you are in the folder.
The nginx docker image is alpine and installs git and then downloads this repository to the default nginx folder /usr/share/nginx/html.
Dockerfile:
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html
RUN apk add git
RUN git clone https://github.com/JakobJFL/Hue-Browser-Controller /usr/share/nginx/html
EXPOSE 80
Hey, had the idea for a apache docker image with hue-browser-controller inside it that exposed a port so you can access it.
The text was updated successfully, but these errors were encountered: