-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 872 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 872 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
services:
rss2go-daemon:
build:
context: .
dockerfile: Dockerfile
image: rss2go:latest
container_name: rss2go-daemon
depends_on:
rss2go-scraper:
condition: service_started
restart: unless-stopped
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
volumes:
- ./rss2go_docker.yaml:/app/rss2go.yaml
- ./rss2go.db:/app/rss2go.db
command: ["rss2go", "daemon", "--config", "/app/rss2go.yaml"]
networks:
- rss2go-network
rss2go-scraper:
image: rss2go:latest
container_name: rss2go-scraper
restart: unless-stopped
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
# Scraper listens on :8282
command: ["scraper"]
ports:
- "127.0.0.1:8282:8282"
networks:
- rss2go-network
networks:
rss2go-network:
driver: bridge