A docker image for glowing-bear works very well with my weechat docker image :)
From github.com/glowing-bear/glowing-bear:
Glowing Bear is a web frontend for the WeeChat IRC client and strives to be a modern interface. It relies on WeeChat to do all the heavy lifting and then provides some nice features on top of that, like embedding images, videos, and other content. The best part, however, is that you can use it from any modern internet device -- whether it's a computer, tablet, or smart phone -- and all your stuff is there, wherever you are. You don't have to deal with the messy technical details, and all you need to have installed is a browser or our app.
- Source Code : https://github.com/glowing-bear/glowing-bear
- Official Website : https://glowing-bear.org
All the lines commented in the examples below should be adapted to your environment.
Note: this image is based on latest nginxinc/nginx-unprivileged
docker run \
--detach \
--interactive \
--name glowing-bear \
--volume /etc/localtime:/etc/localtime:ro \
--env TZ=Europe/Paris \
--publish 8080:8080 \
j33r/glowing-bear:latest
docker-compose
can help with defining the docker run
config in a repeatable way rather than ensuring you always pass the same CLI arguments.
Here's an example docker-compose.yml
config:
version: '3'
services:
glowing-bear:
image: j33r/glowing-bear:latest
container_name: glowing-bear
restart: unless-stopped
ports:
- 8080:8080
environment:
- TZ=Europe/Paris
volumes:
- /etc/localtime:/etc/localtime:ro
/etc/localtime
: This directory is for have the same time as host in the container.
TZ
: To change the timezone of the container set theTZ
environment variable. The full list of available options can be found on Wikipedia.
8080
: publish glowing-bear on the port 8080 port (eg. http://127.0.0.1:8080)
Found any issue or bug in the codebase? Have a great idea you want to propose ? You can help by submitting an issue to the Github repository.
Before opening a new issue, please check if the issue has not been already made by searching the issues
We would like to have discussions and general queries related to this repository.
you can reach me on Libera irc server /query jee
Before submitting a pull request, ensure that you go through the following:
- Ensure that there is no open or closed Pull Request corresponding to your submission to avoid duplication of effort.
- Create a new branch on your forked repo based on the main branch and make the changes in it. Example:
git clone https://your_fork
git checkout -B patch-N main
- Submit the pull request, provide informations (why/where/how) in the comments section
This project is under the GNU Generic Public License v3 to allow free use while ensuring it stays open.