-
Notifications
You must be signed in to change notification settings - Fork 49
/
docker-compose.yml
52 lines (51 loc) · 1.19 KB
/
docker-compose.yml
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
services:
lbrynet:
image: odyseeteam/lbrynet-tv:0.110.0
platform: linux/amd64
container_name: lbrynet
ports:
- "15279:5279"
volumes:
- lbrynet:/storage
- ./docker/daemon_settings.yml:/daemon/daemon_settings.yml
labels:
com.centurylinklabs.watchtower.enable: true
redis:
image: redis:7
container_name: redis
ports:
- '6379:6379'
command: >
--requirepass odyredis --appendonly yes
labels:
com.centurylinklabs.watchtower.enable: false
postgres:
image: postgres:12.5-alpine
container_name: postgres
command: ["postgres", "-c", "log_statement=all", "-c", "log_destination=stderr"]
ports:
- "5432:5432"
volumes:
- pgdata:/pgdata
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: odyseeteam
POSTGRES_DB: oapi
PGDATA: /pgdata
TZ: "UTC"
PGTZ: "UTC"
minio:
image: minio/minio:latest
container_name: minio
ports:
- "9002:9002"
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: minio123
command: server /data --address :9002
volumes:
- minio-data:/data
volumes:
pgdata: {}
lbrynet: {}
minio-data: {}