-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
47 lines (47 loc) · 1 KB
/
docker-compose.dev.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
version: '3'
services:
core:
container_name: gerbera-core
environment:
- CORE_LAUNCH_CMD=${CORE_LAUNCH_CMD}
build:
context: ./gerbera-core
args:
CORE_GIT_CMD: ${CORE_GIT_CMD}
ports:
- "49152:49152"
- "1900:1900/udp"
volumes:
- gerbera-media:/gerbera-media
- gerbera-home:/gerbera-home
depends_on:
- media
- home
selenium-hub:
image: selenium/hub:3.141.59-bismuth
container_name: selenium-hub
ports:
- "4444:4444"
chrome:
container_name: node-chrome
image: selenium/node-chrome:3.141.59-bismuth
depends_on:
- selenium-hub
environment:
- HUB_HOST=selenium-hub
- HUB_PORT=4444
media:
container_name: gerbera-media
build:
context: ./gerbera-media
volumes:
- gerbera-media:/gerbera-media
home:
container_name: gerbera-home
build:
context: ./gerbera-home
volumes:
- gerbera-home:/gerbera-home
volumes:
gerbera-media:
gerbera-home: