-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (44 loc) · 898 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (44 loc) · 898 Bytes
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
services:
html2rss-web:
image: html2rss/web:1
restart: unless-stopped
env_file:
- path: .env
required: false
environment:
PORT: 4000
BOTASAURUS_SCRAPER_URL: http://botasaurus:4010
botasaurus:
image: html2rss/botasaurus-scrape-api:latest
restart: unless-stopped
caddy:
image: caddy:2-alpine
depends_on:
- html2rss-web
command:
- caddy
- reverse-proxy
- --from
- ${CADDY_HOST}
- --to
- html2rss-web:4000
ports:
- "80:80"
- "443:443"
volumes:
- caddy_data:/data
watchtower:
image: containrrr/watchtower
depends_on:
- html2rss-web
- caddy
- botasaurus
command:
- --cleanup
- --interval
- "7200"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped
volumes:
caddy_data: