Blame

73561d mb tech 2026-01-13 00:50:04
added rss pub
1
# Rsspub
1b78e0 mb tech 2026-01-13 15:07:35
updated
2
3
## compose.yml
73561d mb tech 2026-01-13 00:50:04
added rss pub
4
```yaml
1b78e0 mb tech 2026-01-13 15:07:35
updated
5
---
73561d mb tech 2026-01-13 00:50:04
added rss pub
6
services:
7
rsspub:
8
image: harshit181/rsspub:latest
9
container_name: rsspub
10
restart: unless-stopped
11
ports:
12
- "8084:3000"
13
volumes:
14
- ./data:/app/data
15
environment:
16
- RSSPUB_USERNAME=admin
17
- RSSPUB_PASSWORD=password
18
healthcheck:
19
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"]
20
interval: 30s
21
timeout: 10s
22
retries: 3
23
```