An open API service indexing awesome lists of open source software.

https://github.com/meething/meething-docker

Meething.space in a Box
https://github.com/meething/meething-docker

dwebrtc gun gundb mediasoup meething meeting room video videomeeting webrtc

Last synced: 27 days ago
JSON representation

Meething.space in a Box

Awesome Lists containing this project

README

        

mozilla-builders

### meething : docker

This docker container runs the full meething stack for fun and testing.

* [Meething UI](https://github.com/meething/meething) on port 443
* [Meething SFU](https://github.com/meething/meething-mediasoup) on port 2345
* [Meething GUN](https://github.com/meething/gundb-multisocket) on port 8765

#### Build
```
docker build --no-cache -t meething/meething .
```

#### Usage
An example usage of meething with `docker-compose` - just add your TLS certificates in the `/cert` directory
```
version: '2.1'
services:
meething:
image: meething/meething:latest
container_name: meething
volumes:
- ./meething-all.config.js:/meething-all.config.js
environment:
- SSLCERT=/certs/fullchain.pem
- SSLKEY=/certs/privkey.pem
restart: unless-stopped
ports:
- 8443:443
- 2345:2345
- 8765:8765
labels:
org.label-schema.group: "meething"

```