-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (51 loc) · 1.1 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
53
54
55
56
version: '2.3'
volumes:
media:
config:
services:
server:
build: .
image: kapturebox/server:latest
volumes:
- config:/config
- media:/media
- /app/node_modules
- .:/app
environment:
NODE_ENV: docker
TRANSMISSION_HOST: transmission
TRANSMISSION_USER: admin
TRANSMISSION_PASS: password
FLEXGET_HOST: flexget
FLEXGET_USERNAME: flexget
FLEXGET_PASSWORD: mySuperPassword
KAPTURE_DOWNLOAD_PATH: /media
KAPTURE_PLUGIN_STORE: /config/pluginStateStore
LOG_LEVEL: debug
ports:
- '9000:9000'
transmission:
image: dperson/transmission
ports:
- '51413:51413'
- '51413:51413/udp'
- '9091:9091'
environment:
TRUSER: admin
TRPASSWD: password
USERID: 0
volumes:
- media:/media
flexget:
image: gaieges/flexget:latest
environment:
FLEXGET_PASSWORD: mySuperPassword
ports:
- "5050:5050"
# not necessary at the moment..
# plex:
# image: plexinc/pms-docker
# ports:
# - '32400:32400'
# volumes:
# - media:/media