-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfreshrss.yml
29 lines (27 loc) · 817 Bytes
/
freshrss.yml
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
# Change the following value to match your setup:
# change-me-1 is the domain name for your freshrss instance
services:
freshrss:
image: 'linuxserver/freshrss:latest'
restart: always
hostname: 'change-me-1'
environment:
- PUID=1000
- PGID=1000
volumes:
- freshrss-data:/config
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- dokploy-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.freshrss.entrypoints=websecure"
- "traefik.http.routers.freshrss.tls.certresolver=letsencrypt"
- "traefik.http.routers.freshrss.rule=Host(`change-me-1`)"
- "traefik.http.services.freshrss.loadbalancer.server.port=80"
networks:
dokploy-network:
external: true
volumes:
freshrss-data: