thelounge@4.4.0-pre.1 (#151)

This commit is contained in:
William Boman 2023-03-19 18:49:40 +01:00 committed by GitHub
parent cbde991fb2
commit 6e4d631f6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 6 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## 4.4.0-pre.1 (2023-03-19)
- Bump [`thelounge`][1] to [`4.4.0-pre.1`](https://github.com/thelounge/thelounge/releases/tag/v4.4.0-pre.1).
- Also publish images to ghcr.io/thelounge/thelounge, which is the default repository henceforth.
## 4.3.1 (2022-04-12)
- Rebuild latest stable release images on a weekly basis.
- Bump [`thelounge`][1] to [`4.3.1`](https://github.com/thelounge/thelounge/releases/tag/v4.3.1).

View file

@ -15,7 +15,7 @@ CMD ["thelounge", "start"]
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
# Install thelounge.
ARG THELOUNGE_VERSION=4.3.1
ARG THELOUNGE_VERSION=4.4.0-pre.1
RUN apk --update --no-cache --virtual build-deps add python3 build-base git && \
ln -sf python3 /usr/bin/python && \
yarn --non-interactive --frozen-lockfile global add thelounge@${THELOUNGE_VERSION} && \

View file

@ -1,4 +1,4 @@
THELOUNGE_VERSION?=4.3.1
THELOUNGE_VERSION?=4.4.0-pre.1
ORGANISATION?=thelounge
all: main

View file

@ -18,6 +18,13 @@
To learn more about configuration, usage and features of The Lounge, take a look at [the website](https://thelounge.chat).
### Registries
Images are available in the following registries:
- [ghcr.io](https://github.com/thelounge/thelounge-docker/pkgs/container/thelounge): `ghcr.io/thelounge/thelounge`
- [DockerHub](https://hub.docker.com/r/thelounge/thelounge): `thelounge/thelounge`
### Running a container
One can get started quickly by using the example [`docker-compose.yml`](https://github.com/thelounge/docker-lounge/blob/master/docker-compose.yml) file. [What is docker-compose?](https://docs.docker.com/compose/)
@ -34,7 +41,7 @@ $ docker run --detach \
--publish 9000:9000 \
--volume ~/.thelounge:/var/opt/thelounge \
--restart always \
thelounge/thelounge:latest
ghcr.io/thelounge/thelounge:latest
```
### Executing commands in the container
@ -59,7 +66,7 @@ $ docker run --detach \
--publish 9000:9000 \
--volume ~/.thelounge:/var/opt/thelounge \
--restart always \
thelounge/thelounge:latest
ghcr.io/thelounge/thelounge:latest
```
Refer to the [identd / oidentd docs](https://thelounge.chat/docs/guides/identd-and-oidentd) for more detailed information.
@ -94,7 +101,7 @@ $ docker run --detach \
--publish 5000:9000 \ # Change host port to listen on port 5000
--volume ~/.thelounge:/var/opt/thelounge \
--restart always \
thelounge/thelounge:latest
ghcr.io/thelounge/thelounge:latest
```
### Container user (advanced usage)

View file

@ -1,7 +1,7 @@
version: '2'
services:
thelounge:
image: thelounge/thelounge:latest
image: ghcr.io/thelounge/thelounge:latest
container_name: thelounge
ports:
- "9000:9000"