You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
534 B
YAML
24 lines
534 B
YAML
2 years ago
|
# docker-compose.yml
|
||
|
# Docker Hub: https://hub.docker.com/r/freshrss/freshrss
|
||
|
# The WebUI can be found at http://<HOST_IP>:<WEBUI_PORT>
|
||
|
|
||
|
networks:
|
||
|
<NETWORK_NAME>:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
freshrss:
|
||
|
container_name: freshrss
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
image: lscr.io/linuxserver/freshrss:<VERSION_TAG>
|
||
|
networks:
|
||
|
- <NETWORK_NAME>
|
||
|
ports:
|
||
|
- "80:80" # WebUI Port
|
||
|
restart: unless-stopped
|
||
|
security_opt:
|
||
|
- no-new-privileges:true
|
||
|
volumes:
|
||
|
- ./config:/config
|