-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yaml
64 lines (56 loc) · 1.88 KB
/
docker-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
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
## Change as Required ##
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
################################## Networks ####################################
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
networks:
proxy_net:
name: proxy_net
driver: bridge
ipam:
config:
- subnet: 10.0.0.0/24
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
################################## Services ####################################
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
services:
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
################################## Uptime Kuma ####################################
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
uptime-kuma:
container_name: uptime-kuma
image: louislam/uptime-kuma:latest
restart: unless-stopped
volumes:
- /mnt/disks/docker/uptime-kuma:/app/data
networks:
- proxy_net
ports:
- 3001:3001
security_opt:
- no-new-privileges:true
##~~~~~~~~~~~~~~~~~~~~##
##### Healthchecks #####
##~~~~~~~~~~~~~~~~~~~~##
healthchecks:
container_name: healthchecks
image: linuxserver/healthchecks:latest
restart: unless-stopped
environment:
- TZ=Europe/London
- SITE_ROOT=https://healthchecks.domainhere
- SITE_NAME=Health Checks
- SUPERUSER_EMAIL=adminemailhere
- SUPERUSER_PASSWORD=adminpasshere
- APPRISE_ENABLED=True
- PING_BODY_LIMIT=100000
- DEBUG=False
volumes:
- /mnt/disks/docker/healthchecks:/config
networks:
- proxy_net
ports:
- 8000:8000
security_opt:
- no-new-privileges:true