-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (49 loc) · 1 KB
/
docker-compose.yml
File metadata and controls
53 lines (49 loc) · 1 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
services:
ti-bridge:
build: .
restart: unless-stopped
ports:
- "8080:8080"
dns:
- 1.1.1.1
- 1.0.0.1
environment:
- REDIS_URL=redis://redis:6379/0
- TZ=Europe/Amsterdam
depends_on:
- redis
volumes:
- ./app:/app/app
- ./scan-blacklist.conf:/app/scan-blacklist.conf
- ./scan-blacklist-custom.conf:/app/scan-blacklist-custom.conf
networks:
- default
- nginx-pm_default
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
restart: unless-stopped
volumes:
- uptime-kuma-data:/app/data
ports:
- "3001:3001"
environment:
- TZ=Europe/Amsterdam
- UPTIME_KUMA_BASE_PATH=/cloud
networks:
- default
- nginx-pm_default
redis:
image: redis:alpine
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- redis_data:/data
networks:
default:
nginx-pm_default:
external: true
volumes:
redis_data:
uptime-kuma-data: