forked from OdyseeTeam/odysee-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (46 loc) · 943 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (46 loc) · 943 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
42
43
44
45
46
47
48
version: "3.2"
services:
lbrynet:
image: lbry/lbrynet-tv:0.101.1
ports:
- "5581:5279"
- "5279:5279"
volumes:
- storage:/storage
environment:
SDK_CONFIG: /daemon/daemon_settings.yml
labels:
com.centurylinklabs.watchtower.enable: true
app:
image: lbry/odysee-api:latest
ports:
- 8080:8080
volumes:
- storage:/storage
environment:
LW_DEBUG: 1
depends_on:
- lbrynet
- postgres
labels:
com.centurylinklabs.watchtower.enable: true
postgres:
image: postgres:11-alpine
command:
- -clogging_collector=on
- -clog_statement=all
- -clog_destination=stderr
ports:
- "5432:5432"
volumes:
- pgdata:/pgdata
environment:
POSTGRES_USER: lbrytv
POSTGRES_PASSWORD: lbrytv
PGDATA: /pgdata
TZ: "UTC"
PGTZ: "UTC"
volumes:
pgdata: {}
storage: {}
test_storage: {}