-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
174 lines (163 loc) · 4.39 KB
/
compose.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
ports:
- ${PORTAINER_PORT}:9443
volumes:
- ./portainer:/data
- /var/run/docker.sock:/var/run/docker.sock
mariadb:
image: mariadb
container_name: mariadb_nextcloud
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW --innodb-file-per-table=1 --skip-innodb-read-only-compressed
environment:
- MYSQL_ROOT_PASSWORD=${MARIADB_PASSWORD}
- MYSQL_DATABASE=${MARIADB_DATABASE}
- MYSQL_USER=root
ports:
- 9022:3306
volumes:
- ./nextcloud/mariadb:/var/lib/mysql
nextcloud:
image: nextcloud
container_name: nextcloud
restart: always
links:
- mariadb:mysql
environment:
- MYSQL_PASSWORD=${MARIADB_PASSWORD}
- MYSQL_DATABASE=${MARIADB_DATABASE}
- MYSQL_USER=root
- MYSQL_HOST=mariadb
ports:
- ${NEXTCLOUD_PORT}:80
volumes:
- ./nextcloud/nextcloud:/var/www/html
- ./nextcloud/apps:/var/www/html/custom_apps
- ./nextcloud/config:/var/www/html/config
- ./nextcloud/data:/var/www/html/data
adguard:
image: adguard/adguardhome
container_name: adguard
restart: always
ports:
- 80:80
- 443:443
- 853:853
- 3000:3000
- 53:53/udp
volumes:
- ./adguard/work:/opt/adguardhome/work
- ./adguard/conf:/opt/adguardhome/conf
homeassistant:
image: homeassistant/home-assistant
container_name: homeassistant
restart: always
privileged: true
network_mode: host
volumes:
- ./hass.io/config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
- /dev/ttyUSB0:/dev/ttyUSB0
- /dev/ttyUSB1:/dev/ttyUSB1
node-red:
image: nodered/node-red:latest
container_name: node-red
restart: always
privileged: true
environment:
- TZ=Europe/Berlin
ports:
- "1880:1880"
volumes:
- ./node-red-data:/data
esphome:
image: esphome/esphome
platform: linux/arm64
container_name: esphome
restart: always
network_mode: host
privileged: true
environment:
- USERNAME=${ESPHOME_USERNAME}
- PASSWORD=${ESPHOME_PASSWORD}
volumes:
- ./esphome/config:/config
- /etc/localtime:/etc/localtime:ro
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
platform: linux/arm64
container_name: audiobookshelf
restart: always
ports:
- 13378:80
volumes:
- ${AUDIOBOOKS_VOL_1}/:/audiobooks ### Add your files from host/network to any point in the container for later usage, you may also add multiple different volumes
- ${AUDIOBOOKS_VOL_2}/:/audiobooks_english
- ./abs/podcasts/:/podcasts
- ./abs/config/:/config
- ./abs/metadata/:/metadata
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: always
env_file:
- .envh
ports:
- ${HOMEPAGE_PORT}:3000
volumes:
- ./homepage/config/:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
mealie:
image: ghcr.io/mealie-recipes/mealie:latest
platform: linux/arm64
container_name: mealie
restart: always
privileged: true
environment:
# Set Backend ENV Variables Here
- ALLOW_SIGNUP=true
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- MAX_WORKERS=1
- WEB_CONCURRENCY=1
- BASE_URL=${MEALIE_URL}
ports:
- ${MEALIE_PORT}:9000
volumes:
- .mealie/data:/app/data/
deploy:
resources:
limits:
memory: 1000M
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:arm64v8-latest
container_name: qbittorrent
restart: unless-stopped
privileged: true
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=${QBIT_PORT}
volumes:
- ./qbit/config:/config
- /ssd:/downloads
- /ssd/audiobooks:/audiobooks
- /ssd/audiobooks_english:/audiobooks_english
- /ssd/ebooks:/ebooks
ports:
- ${QBIT_PORT}:8080
- 54468:54468
- 54468:54468/udp