forked from bigbluebutton/greenlight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (32 loc) · 790 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (32 loc) · 790 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
version: '3'
services:
postgres:
image: postgres:14-alpine3.20
container_name: postgres
restart: unless-stopped
volumes:
- ./data/postgres/14/database_data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=
redis:
image: redis:6.2-alpine3.20
container_name: redis
restart: unless-stopped
volumes:
- ./data/redis/database_data:/data
greenlight-v3:
entrypoint: [bin/start]
image: bigbluebutton/greenlight:v3
container_name: greenlight-v3
restart: unless-stopped
env_file: .env
ports:
- 127.0.0.1:5050:3000
logging:
driver: journald
volumes:
- ./data/greenlight-v3/storage:/usr/src/app/storage
depends_on:
- postgres
- redis