This docker container runs the full meething stack for fun and testing.
- Meething UI on port 443
- Meething SFU on port 2345
- Meething GUN on port 8765
docker build --no-cache -t meething/meething .
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"