-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.live.yaml
47 lines (43 loc) · 1.08 KB
/
docker-compose.live.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
# Temporary deployment stuff.
# Passwords in this file SHOULD BE CHANGED.
version: '3.7'
services:
tsdb:
image: timescale/timescaledb:latest-pg14
environment:
POSTGRES_PASSWORD: saerro321
POSTGRES_USER: saerrouser
POSTGRES_DB: data
ports:
- 5432
api:
image: ghcr.io/genudine/saerro/api:latest
pull_policy: always
ports:
- 80:8000
links:
- tsdb
restart: always
environment:
DATABASE_ADDR: postgres://saerrouser:saerro321@tsdb:5432/data
ws:
image: ghcr.io/genudine/saerro/websocket:latest
pull_policy: always
restart: always
ports:
- 8999:8999
environment:
DATABASE_ADDR: postgres://saerrouser:saerro321@tsdb:5432/data
WS_ADDR: wss://push.nanite-systems.net/streaming?environment=all&service-id=s:saegd
WORLDS: all
links:
- tsdb
task_prune:
image: ghcr.io/genudine/saerro/tasks:latest
command: /app prune
pull_policy: always
restart: "no"
environment:
DATABASE_ADDR: postgres://saerrouser:saerro321@tsdb:5432/data
links:
- tsdb