-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
88 lines (88 loc) · 2.22 KB
/
Copy pathdocker-compose.yml
File metadata and controls
88 lines (88 loc) · 2.22 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
version: '2'
services:
settings:
build: .
volumes:
- ./settings:/opt/tenyks-settings
tenyks:
build: tenyks
ports:
- "61123:61123"
- "61124:61124"
restart: always
tenyksscripts:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenyksscripts", "/opt/tenyks-settings/tenyksscripts_settings.py"]
restart: always
tenyksfeeds:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenyksfeeds", "/opt/tenyks-settings/tenyksfeeds_settings.py"]
restart: always
tenykslinkscraper:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenykslinkscraper", "/opt/tenyks-settings/tenykslinkscraper_settings.py"]
restart: always
tenykswunderground:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenykswunderground", "/opt/tenyks-settings/tenyksweather_settings.py"]
environment:
- WUNDERGROUND_API_KEY=${WUNDERGROUND_API_KEY}
restart: always
tenyksleetpoints:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenyksleetpoints", "/opt/tenyks-settings/tenyksleetpoints_settings.py"]
restart: always
tenyksgentoo:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenyksgentoo", "/opt/tenyks-settings/tenyksgentoo_settings.py"]
restart: always
tenykslol:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenykslol", "/opt/tenyks-settings/tenykslol_settings.py"]
restart: always
tenykssame:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenykssame", "/opt/tenyks-settings/tenykssame_settings.py"]
restart: always
tenykstwitter:
image: kyleterry/tenyks-contrib
depends_on:
- tenyks
volumes_from:
- settings
command: ["tenykstwitter", "/opt/tenyks-settings/tenykstwitter_settings.py"]
restart: always
volumes:
settings: