Linphone in Docker (but no mic+webcam)
This commit is contained in:
parent
8f62e3ec44
commit
01527ca88f
2 changed files with 22 additions and 0 deletions
18
README.md
18
README.md
|
@ -208,3 +208,21 @@ Check if a free() invalid pointer bug occured:
|
|||
grep 'free' naive-*/log/*-donar-*.log
|
||||
grep -rn 'free()' .
|
||||
```
|
||||
|
||||
## Use a Linphone container
|
||||
|
||||
```
|
||||
docker build -f linphone.dockerfile -t superboum/linphone .
|
||||
```
|
||||
|
||||
Run it:
|
||||
|
||||
```
|
||||
docker run \
|
||||
-ti \
|
||||
-e DISPLAY=$DISPLAY \
|
||||
-v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
--ipc=host \
|
||||
superboum/linphone \
|
||||
bash
|
||||
```
|
||||
|
|
4
linphone.dockerfile
Normal file
4
linphone.dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM registry.gitlab.inria.fr/qdufour/donar
|
||||
|
||||
USER root
|
||||
RUN dnf install -y linphone
|
Loading…
Reference in a new issue