Docker setup for Galeneā , feature-rich video server.
581
This repository provides a Docker setup for building and running Galeneā , a feature-rich, easy-to-deploy, and resource-efficient videoconferencing system.
Under version 1.0.0 I mean the Galene version, not the image version. Also, as I may see, the aren't lots of galene images that stay actual through the years. I know that one time this one would be abandoned too. So, I make Dockerfile that way it can be actual through years.
You can found it there (github)ā
Dockerfile dynamically fetches the latest stable version of Galene from the official repository during the build process.go get -u ./...) to incorporate the latest stable package versions, addressing potential vulnerabilities in older dependencies.docker-compose.yml demonstrates how to pass command-line arguments to the Galene binary, allowing users to configure Galene's settings as needed.Dockerfile, offering full control over the build process.Dockerfile and docker-compose.yml in your project directory. Run docker-compose up --build to build the image and start the Galene server.command: section in docker-compose.yml to pass specific arguments to Galene. Volumes are used to persist data (like group configurations) outside the container.https://<your-host-ip>:8443. You may need to accept the self-signed certificate.For detailed Galene usage, administration, and configuration options, please refer to the official documentation available within the Galene source repository or at https://galene.orgā .
version: '3.8'
services:
my-galene:
build: .
ports:
- "8443:8443"
# - "1194:1194"
volumes:
- ./test/data:/data
- ./test/groups:/groups
#command: ["-insecure", "-http", ":8443", "-turn", "you.server.ip.address", "1194"]
Content type
Image
Digest
sha256:b9c7edb09ā¦
Size
14.1 MB
Last updated
11 months ago
docker pull byteonabeach/galene