-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
compose.yaml
54 lines (48 loc) · 1.24 KB
/
compose.yaml
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"
services:
frontoffice:
image: fonoster/goodtok-frontoffice:latest
restart: unless-stopped
environment:
# Must be accessible from the browser
API_ENDPOINT: ${API_ENDPOINT}
LOGS_LEVEL: ${LOGS_LEVEL}
ports:
- 8080:8080
apiserver:
image: fonoster/goodtok-apiserver:latest
restart: unless-stopped
environment:
APP_URL: ${APP_URL}
OWNER_EMAIL: ${OWNER_EMAIL}
OWNER_PASSWORD: ${OWNER_PASSWORD}
CLOAK_ENCRYPTION_KEY: ${CLOAK_ENCRYPTION_KEY}
DATABASE_URL: ${DATABASE_URL}
SIGNALING_HOST: ${SIGNALING_HOST}
SIGNALING_PORT: ${SIGNALING_PORT}
SMTP_HOST: ${SMTP_HOST}
SMTP_AUTH_USER: ${SMTP_AUTH_USER}
SMTP_AUTH_PASS: ${SMTP_AUTH_PASS}
SMTP_SENDER: ${SMTP_SENDER}
EMAIL_TEMPLATES_DIR: ${EMAIL_TEMPLATES_DIR}
LOGS_LEVEL: ${LOGS_LEVEL}
ports:
- 6789:6789
postgres:
image: postgres:14.1-alpine
restart: unless-stopped
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
TZ: UTC
PGTZ: UTC
expose:
- 5432
volumes:
- db:/var/lib/postgresql/data
peerjs:
image: peerjs/peerjs-server:1.0.2
ports:
- 9000:9000
volumes:
db: