-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
66 lines (64 loc) · 1.86 KB
/
docker-compose.yaml
File metadata and controls
66 lines (64 loc) · 1.86 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
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
env_file: .env
user: "1000:996"
group_add:
- "996"
privileged: true
networks:
- proxy
ports:
- 3000:3000
volumes:
- ./config:/app/config
- ./config/images:/app/public/images
- /var/run/docker.sock:/var/run/docker.sock:ro
- /mnt/SSD:/mnt/SSD:ro
- /mediavault:/mediavault:ro
- /NAS2:/NAS2:ro
devices:
- /dev/sda:/dev/sda
- /dev/sdb:/dev/sdb
- /dev/sdc:/dev/sdc
- /dev/sdd:/dev/sdd
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- HOMEPAGE_ALLOWED_HOSTS=*
- TZ=Europe/Bucharest
labels:
- "traefik.enable=true"
- "traefik.http.routers.homepage.rule=Host(`thebrain.bartis.ro`)"
- "traefik.http.routers.homepage.entrypoints=websecure"
- "traefik.http.routers.homepage.tls=true"
- "traefik.http.routers.homepage.tls.certresolver=cloudflare"
- "traefik.http.services.homepage.loadbalancer.server.port=3000"
scrutiny:
image: ghcr.io/analogj/scrutiny:master-omnibus
container_name: scrutiny
restart: unless-stopped
privileged: true
networks:
- proxy
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Bucharest
volumes:
- /run/udev:/run/udev:ro
- ./scrutiny/config:/opt/scrutiny/config
- ./scrutiny/influxdb:/opt/scrutiny/influxdb
- /dev:/dev
labels:
- "traefik.enable=true"
- "traefik.http.routers.scrutiny.rule=Host(`scrutiny.bartis.ro`)"
- "traefik.http.routers.scrutiny.entrypoints=websecure"
- "traefik.http.routers.scrutiny.tls=true"
- "traefik.http.routers.scrutiny.tls.certresolver=cloudflare"
- "traefik.http.services.scrutiny.loadbalancer.server.port=8080"
networks:
proxy:
external: true