All Projects → thelounge → Thelounge Docker

thelounge / Thelounge Docker

Licence: mit
🐳 Docker container for The Lounge, a self-hosted web IRC client

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Thelounge Docker

Docker Compose Lamp
A basic LAMP stack environment built using Docker Compose.
Stars: ✭ 1,284 (+797.9%)
Mutual labels:  docker-container
Refarch Cloudnative Kubernetes
Reference Implementation for Microservices based on Kubernetes and the IBM Container Service.
Stars: ✭ 115 (-19.58%)
Mutual labels:  docker-container
Docker Webui
Dockerized docker-webui ->
Stars: ✭ 129 (-9.79%)
Mutual labels:  docker-container
Ouroboros
Automatically update running docker containers with newest available image
Stars: ✭ 1,474 (+930.77%)
Mutual labels:  docker-container
Sakuli
Sakuli is an end-2-end testing and monitoring tool for web sites and common UIs with multiple monitoring integrations
Stars: ✭ 115 (-19.58%)
Mutual labels:  docker-container
Dockstation
DockStation is developer-centric application to managing projects based on Docker. Instead of lots of CLI commands you can monitor, configure, and manage services and containers using just a GUI.
Stars: ✭ 1,744 (+1119.58%)
Mutual labels:  docker-container
Docker Superset
Repository for Docker Image of Apache-Superset. [Docker Image: https://hub.docker.com/r/abhioncbr/docker-superset]
Stars: ✭ 86 (-39.86%)
Mutual labels:  docker-container
Tiler
A no nonsense Vector Tile pipeline
Stars: ✭ 132 (-7.69%)
Mutual labels:  docker-container
Owasp Workshop
owasp-workshop: Orchetraing containers with Kubernetes
Stars: ✭ 116 (-18.88%)
Mutual labels:  docker-container
Laradock
Full PHP development environment for Docker.
Stars: ✭ 11,064 (+7637.06%)
Mutual labels:  docker-container
Dockernotes
Docker入门精华版
Stars: ✭ 107 (-25.17%)
Mutual labels:  docker-container
Europa
Puppet Container Registry
Stars: ✭ 114 (-20.28%)
Mutual labels:  docker-container
Docker Workshop
Introduction to Docker tutorial
Stars: ✭ 124 (-13.29%)
Mutual labels:  docker-container
Proxy.py
⚡⚡⚡Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging
Stars: ✭ 1,291 (+802.8%)
Mutual labels:  docker-container
Docker Influxdb Grafana
A Docker container which runs InfluxDB and Grafana ready for persisting data
Stars: ✭ 130 (-9.09%)
Mutual labels:  docker-container
Docker Gocd Server
Docker server image for GoCD
Stars: ✭ 86 (-39.86%)
Mutual labels:  docker-container
Iredmail Docker
iRedmail docker container
Stars: ✭ 117 (-18.18%)
Mutual labels:  docker-container
Awesome Container Security
Awesome list of resources related to container security
Stars: ✭ 140 (-2.1%)
Mutual labels:  docker-container
Spacechop
HTTP service for high-level image processing with first-class Docker support.
Stars: ✭ 133 (-6.99%)
Mutual labels:  docker-container
Private Tor Network
Run an isolated instance of a tor network in Docker containers
Stars: ✭ 125 (-12.59%)
Mutual labels:  docker-container

The Lounge

Docker container for The Lounge, modern web IRC client designed for self-hosting

WebsiteDocsDemo

#thelounge IRC channel on freenode" Total pulls on Docker Total stars on Docker


Overview

  • Modern features brought to IRC. Push notifications, link previews, new message markers, and more bring IRC to the 21st century.
  • Always connected. Remains connected to IRC servers while you are offline.
  • Cross platform. It doesn't matter what OS you use, it just works wherever Node.js runs.
  • Responsive interface. The client works smoothly on every desktop, smartphone and tablet.
  • Synchronized experience. Always resume where you left off no matter what device.

To learn more about configuration, usage and features of The Lounge, take a look at the website.

Running a container

One can get started quickly by using the example docker-compose.yml file. What is docker-compose?

$ docker-compose up --detach

or starting a container manually:

$ docker run --detach \
             --name thelounge \
             --publish 9000:9000 \
             --volume ~/.thelounge:/var/opt/thelounge \
             --restart always \
             thelounge/thelounge:latest

Executing commands in the container

Due to the way root permissions are dropped in the container, it's highly recommended to pass the --user node argument to any commands you execute in the container via Docker to ensure that file permissions retain the correct owner, like so:

$ docker exec --user node -it [container_name] thelounge add MyUser

Configuring identd

Since root permissions are dropped in the container the default port 113 can not be used as it is within the priviliged port range. Instead, use a higher port in your The Lounge identd configuration and map it back to 113 on your host system, for example like so:

$ docker run --detach \
             --name thelounge \
             --publish 113:9001 \
             --publish 9000:9000 \
             --volume ~/.thelounge:/var/opt/thelounge \
             --restart always \
             thelounge/thelounge:latest

Refer to the identd / oidentd docs for more detailed information.

Data directory

The Lounge reads and stores all of its configuration, logs and other data at /var/opt/thelounge.

By default, The Lounge will run using the node (1000:1000) system user in the container, leading to mounted data directories on the host system being owned by said user. This is customizable by changing the container user (see Container user (advanced usage)).

You will probably want to persist the data at this location by using one of the means to do so.

Adding users

Users can be added as follows:

$ docker exec --user node -it [container_name] thelounge add [username]

Note: without persisting data, added users will be lost when the container is removed.

Changing the port that The Lounge will be available on

To change the port which The Lounge will be available on, one will have to change the host port in the port mapping. To make The Lounge available on e.g. port 5000:

$ docker run --detach \
             --name thelounge \
             --publish 5000:9000 \ # Change host port to listen on port 5000
             --volume ~/.thelounge:/var/opt/thelounge \
             --restart always \
             thelounge/thelounge:latest

Container user (advanced usage)

By default, The Lounge will run using the node (1000:1000) user. This is customizable by running the container as a different, non-root, user. Beware that this may cause permission issues when a container process tries reading from the data disk unless you have manually set the permissions correctly.

Also keep in mind that whenever executing one-off commands in the container you need to explicitly set the correct user.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].