forked from voc/voctomix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (52 loc) · 1.09 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
version: '3.4'
services:
voctocore:
image: c3voc/voctomix
command: core
container_name: voctocore
networks:
voctomix:
aliases:
- corehost
source_cam1:
image: c3voc/voctomix
command: gstreamer/source-videotestsrc-as-cam1.sh
container_name: source_cam1
depends_on:
- voctocore
networks:
- voctomix
source_bg:
image: c3voc/voctomix
command: gstreamer/source-videotestsrc-as-background-loop.sh
container_name: source_bg
depends_on:
- voctocore
networks:
- voctomix
voctogui:
image: c3voc/voctomix
command: gui
container_name: voctogui
depends_on:
- voctocore
environment:
DISPLAY: :0
uid: ${UID}
gid: ${GID}
volumes:
- type: bind
source: /tmp/vocto/configgui.ini
target: /opt/voctomix/voctogui/config.ini
- type: bind
source: /tmp/.X11-unix
target: /tmp/.X11-unix
- type: bind
source: /tmp/.docker.xauth
target: /tmp/.docker.xauth
networks:
- voctomix
networks:
voctomix:
...