-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 995 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 995 Bytes
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
services:
postgres:
image: postgres:17
ports:
- "${PORT_PREFIX:-30}02:5432"
environment:
POSTGRES_DB: openslaq
POSTGRES_USER: openslaq
POSTGRES_PASSWORD: openslaq
volumes:
- pgdata:/var/lib/postgresql/data
s3mock:
image: adobe/s3mock
ports:
- "${PORT_PREFIX:-30}03:9090"
environment:
COM_ADOBE_TESTING_S3MOCK_STORE_INITIAL_BUCKETS: openslaq-uploads
livekit:
image: livekit/livekit-server:latest
command: --config /etc/livekit.yaml --dev
ports:
- "${PORT_PREFIX:-30}04:7880"
- "${PORT_PREFIX:-30}05:7881"
- "${PORT_PREFIX:-30}06:7882"
- "3478:3478/udp"
volumes:
- ./livekit.yaml:/etc/livekit.yaml
bugsink:
image: bugsink/bugsink:latest
ports:
- "${PORT_PREFIX:-30}12:8000"
environment:
SECRET_KEY: openslaq-dev-bugsink-secret-key-for-local-development-only-not-production
CREATE_SUPERUSER: admin:admin
PORT: 8000
volumes:
pgdata: