Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
1cb57f90c1 | |||
bc47b87afe | |||
8d053549e3 |
12
.gitea/workflows/container.yaml
Normal file
12
.gitea/workflows/container.yaml
Normal 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 }}
|
@ -1,11 +0,0 @@
|
|||||||
pipeline:
|
|
||||||
publish-docker-image:
|
|
||||||
image: plugins/kaniko
|
|
||||||
settings:
|
|
||||||
repo: docker.io/thallian/murmur
|
|
||||||
tags: latest,${CI_COMMIT_SHA:0:8},${CI_COMMIT_TAG=pre}
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
username:
|
|
||||||
from_secret: DOCKER_USER
|
|
||||||
password:
|
|
||||||
from_secret: DOCKER_PW
|
|
@ -1,4 +1,4 @@
|
|||||||
FROM thallian/confd-env:3.18-3.1.5.0
|
FROM docker.io/thallian/confd-env:3.19-3.1.6.2
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
murmur \
|
murmur \
|
24
README.md
24
README.md
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user