-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
90 lines (85 loc) · 2.13 KB
/
Copy pathdocker-compose.yml
File metadata and controls
90 lines (85 loc) · 2.13 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
89
90
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
hostname: pihole
environment:
TZ: 'Europe/Warsaw'
WEBPASSWORD: ${PIHOLE_PASSWORD}
volumes:
- './pihole/etc-pihole:/etc/pihole'
- './pihole/etc-dnsmasq.d:/etc/dnsmasq.d'
ports:
- "53:53/tcp"
- "53:53/udp"
- "80:80/tcp"
restart: unless-stopped
homebridge:
container_name: homebridge
image: homebridge/homebridge:latest
network_mode: host
restart: always
environment:
- PGID=1000
- PUID=1000
- HOMEBRIDGE_CONFIG_UI=1
- HOMEBRIDGE_CONFIG_UI_PORT=8581
volumes:
- ./homebridge:/homebridge
rasp-bridge:
container_name: rasp-bridge
build: ./rasp-bridge
restart: always
network_mode: host
ports:
- "8000:8000"
volumes:
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
- /sys/fs/cgroup:/sys/fs/cgroup:ro
privileged: true
pid: host
environment:
- DBUS_SYSTEM_BUS_ADDRESS=unix:path=/var/run/dbus/system_bus_socket
syncthing:
container_name: syncthing
image: syncthing/syncthing
environment:
- PUID=1000
- PGID=1000
volumes:
- ${HOME}/syncthing:/var/syncthing
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
restart: unless-stopped
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- "3000:3000"
volumes:
- ./homepage/config:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
env_file:
- ./homepage/config/.env
environment:
- PUID=1000
- PGID=1000
- HOMEPAGE_ALLOWED_HOSTS=*
restart: unless-stopped
speedtest-tracker:
image: lscr.io/linuxserver/speedtest-tracker:latest
container_name: speedtest-tracker
ports:
- 8085:80
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Warsaw
- DISPLAY_TIME=true
- APP_KEY=${SPEEDTEST_APP_KEY}
volumes:
- ./speedtest/config:/config
restart: unless-stopped