forked from AcademySoftwareFoundation/OpenCue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
57 lines (53 loc) · 1.18 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
55
56
57
version: '3'
services:
db:
image: postgres
environment:
- POSTGRES_USER=cuebot
- POSTGRES_PASSWORD=cuebot_password
- POSTGRES_DB=cuebot
ports:
- "5432:5432"
volumes:
- ./sandbox/db-data:/var/lib/postgresql/data
flyway:
build:
context: ./
dockerfile: ./sandbox/flyway.Dockerfile
links:
- db
depends_on:
- db
environment:
- PGUSER=cuebot
- PGPASSWORD=cuebot_password
- PGDATABASE=cuebot
- PGHOST=db
- PGPORT=5432
command: /opt/scripts/migrate.sh
cuebot:
image: opencue/cuebot
links:
- db
ports:
- "8443:8443"
depends_on:
- db
- flyway
restart: always
environment:
- CUE_FRAME_LOG_DIR=/tmp/rqd/logs
command: --datasource.cue-data-source.jdbc-url=jdbc:postgresql://db/cuebot --datasource.cue-data-source.username=cuebot --datasource.cue-data-source.password=cuebot_password
rqd:
image: opencue/rqd
environment:
- CUEBOT_HOSTNAME=cuebot
depends_on:
- cuebot
links:
- cuebot
ports:
- "8444:8444"
volumes:
- /tmp/rqd/logs:/tmp/rqd/logs
- /tmp/rqd/shots:/tmp/rqd/shots