Compare commits

...

10 Commits

Author SHA1 Message Date
1cb57f90c1
correct default values in README
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 57s
2023-12-20 07:55:43 +01:00
bc47b87afe
use FQDN for base image
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 55s
2023-12-19 18:11:38 +01:00
8d053549e3
push to version 1.4.287-r10 2023-12-19 18:10:36 +01:00
ab9f86bea9
push to 1.4.287 2023-09-26 16:41:04 +02:00
2986f58c96
push to 1.4.287 2023-09-26 16:39:39 +02:00
0760580c80
use alpine 3.17 2022-11-23 17:36:08 +01:00
f1c789a97b Add '.woodpecker.yml' 2022-11-11 07:51:57 +00:00
267b9aa735 Delete '.gitlab-ci.yml' 2022-11-11 07:51:20 +00:00
9054361254
use lego names for certificates 2022-10-27 15:03:33 +02:00
8fbe72d9b1 update base image 2022-07-12 19:40:00 +02:00
5 changed files with 35 additions and 25 deletions

View File

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

View File

@ -1,18 +0,0 @@
variables:
CONTAINER_NAME: thallian/murmur
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- >-
/kaniko/executor
--context "$CI_PROJECT_DIR"
--dockerfile "$CI_PROJECT_DIR/Dockerfile"
--destination "$CONTAINER_NAME:$CI_COMMIT_SHA"
--destination "$CONTAINER_NAME:$CI_COMMIT_REF_NAME"
--destination "$CONTAINER_NAME:latest"

View File

@ -1,4 +1,4 @@
FROM thallian/confd-env:latest FROM docker.io/thallian/confd-env:3.19-3.1.6.2
RUN apk add --no-cache \ RUN apk add --no-cache \
murmur \ murmur \

View File

@ -1,62 +1,78 @@
Murmur server for [Mumble](https://wiki.mumble.info/wiki/Main_Page) with Murmur server for [Mumble](https://wiki.mumble.info/wiki/Main_Page) with a
a postgre backend. postgre backend.
# Volumes # Volumes
- `/etc/ssl/murmur:ro`: certificates have to be here - `/etc/ssl/murmur:ro`: certificates have to be here
# Environment Variables # Environment Variables
## WELCOME_TEXT ## WELCOME_TEXT
Welcome message sent to clients when they connect. Welcome message sent to clients when they connect.
## SERVER_PASSWORD ## SERVER_PASSWORD
Password to join server. Password to join server.
## ADMIN_PASSWORD ## ADMIN_PASSWORD
Password of the SuperUser. Password of the SuperUser.
## MAX_BANDWIDTH ## MAX_BANDWIDTH
- default: 72000 - default: 72000
Maximum bandwidth (in bits per second) clients are allowed to send speech at. Maximum bandwidth (in bits per second) clients are allowed to send speech at.
## MAX_USERS ## MAX_USERS
- default: 20 - default: 20
Maximum number of concurrent clients allowed. Maximum number of concurrent clients allowed.
## CERT_DOMAIN ## CERT_DOMAIN
Name of the certificate domain. Name of the certificate domain.
## ROOT_NAME ## ROOT_NAME
- default: Root - default: Root
Name of the root channel. Name of the root channel.
## DB_HOST ## DB_HOST
Database host. Database host.
## DB_NAME ## DB_NAME
- default: moodle
- default: murmur
Database name. Database name.
## DB_USER ## DB_USER
- default: moodle
- default: murmur
Database user. Database user.
## DB_PASSWORD ## DB_PASSWORD
Password for the database user. Password for the database user.
## DB_PORT ## DB_PORT
- default: 5432 - default: 5432
Database port. Database port.
# Ports # Ports
- 64738 - 64738
# Capabilities # Capabilities
- CHOWN - CHOWN
- DAC_OVERRIDE - DAC_OVERRIDE
- FOWNER - FOWNER

View File

@ -157,8 +157,8 @@ registerName={{ getenv "ROOT_NAME" "Root" }}
# If you have a proper SSL certificate, you can provide the filenames here. # If you have a proper SSL certificate, you can provide the filenames here.
# Otherwise, Murmur will create it's own certificate automatically. # Otherwise, Murmur will create it's own certificate automatically.
sslCert=/etc/ssl/murmur/tls.crt sslCert=/etc/ssl/murmur/cert.pem
sslKey=/etc/ssl/murmur/tls.key sslKey=/etc/ssl/murmur/key.pem
# The sslCiphers option chooses the cipher suites to make available for use # The sslCiphers option chooses the cipher suites to make available for use
# in SSL/TLS. This option is server-wide, and cannot be set on a # in SSL/TLS. This option is server-wide, and cannot be set on a