-
-
Notifications
You must be signed in to change notification settings - Fork 426
Expand file tree
/
Copy pathcompose.yml
More file actions
36 lines (35 loc) · 1004 Bytes
/
compose.yml
File metadata and controls
36 lines (35 loc) · 1004 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
include:
- compose.dbs.yml
services:
realtime:
depends_on:
- db
- tenant_db
build: .
container_name: realtime-server
environment:
API_JWT_SECRET: dev
APP_NAME: realtime
DASHBOARD_PASSWORD: realtime
DASHBOARD_USER: realtime
DB_AFTER_CONNECT_QUERY: SET search_path TO _realtime
DB_ENC_KEY: "1234567890123456"
DB_HOST: db
DNS_NODES: "''"
ELIXIR_ERL_OPTIONS: +hmax 1000000000
ERL_AFLAGS: -kernel shell_history enabled --proto_dist inet_tcp
GEN_RPC_TCP_CLIENT_PORT: 5469
GEN_RPC_TCP_SERVER_PORT: 5369
METRICS_JWT_SECRET: dev
NAME: pink
PORT: 4000
REGION: us-east-1
RLIMIT_NOFILE: 1000000
RUN_JANITOR: "true"
SECRET_KEY_BASE: UpNVntn3cDxHJpq99YMc1T1AQgQpc8kfYTuRgBiYa15BLrx8etQoXz3gZv1/u2oq
SEED_SELF_HOST: "true"
SLOT_NAME_SUFFIX: some_sha
ports:
- "${PORT:-4000}:${PORT:-4000}"
extra_hosts:
- "host.docker.internal:host-gateway"