- See also:
curl -fsSL https://get.docker.com/ -o get-docker.sh
sh get-docker.sh
Optional, as a less recent online image can be automatically fetched during the next step (run), but online images are not available for as many platforms as if you build yourself.
# First time only
git clone https://github.com/FreshRSS/FreshRSS.git
cd ./FreshRSS/
git pull
sudo docker pull alpine:3.7
sudo docker build --tag freshrss/freshrss -f Docker/Dockerfile .
Example using SQLite, built-in cron, and exposing FreshRSS on port 8080. You may have to adapt the parameters to fit your needs.
# You can optionally run from the directory containing the FreshRSS source code:
cd ./FreshRSS/
# The data will be saved on the host in `./data/`
mkdir -p ./data/
sudo docker run -d --restart unless-stopped --log-opt max-size=10m \
-v $(pwd)/data:/var/www/FreshRSS/data \
-e 'CRON_MIN=5,35' \
-p 8080:80 \
--name freshrss freshrss/freshrss
You may want to use other link methods such as Docker bridges, and use Docker volumes for the data, but here are some simple examples:
See https://hub.docker.com/_/mysql/
sudo docker run -d -v /path/to/mysql-data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=rootpass -e MYSQL_DATABASE=freshrss -e MYSQL_USER=freshrss -e MYSQL_PASSWORD=pass --name mysql mysql
sudo docker run -d --restart unless-stopped --log-opt max-size=10m \
-v $(pwd)/data:/var/www/FreshRSS/data \
-e 'CRON_MIN=17,47' \
--link mysql -p 8080:80 \
--name freshrss freshrss/freshrss
See https://hub.docker.com/_/postgres/
sudo docker run -d -v /path/to/pgsql-data:/var/lib/postgresql/data -e POSTGRES_DB=freshrss -e POSTGRES_USER=freshrss -e POSTGRES_PASSWORD=pass --name postgres postgres
sudo docker run -d --restart unless-stopped --log-opt max-size=10m \
-v $(pwd)/data:/var/www/FreshRSS/data \
-e 'CRON_MIN=23,53' \
--link postgres -p 8080:80 \
--name freshrss freshrss/freshrss
# Rebuild an image (see build section above) or get a new online version:
sudo docker pull freshrss/freshrss
# And then
sudo docker stop freshrss
sudo docker rename freshrss freshrss_old
# See the run section above for the full command
sudo docker run ...
# If everything is working, delete the old container
sudo docker rm freshrss_old
sudo docker exec --user apache -it freshrss php ./cli/list-users.php
See the CLI documentation for all the other commands.
We recommend a refresh rate of about twice per hour (see WebSub / PubSubHubbub for real-time updates). There is no less than 3 options. Pick a single one.
Easiest, built-in solution, also used in the examples above
(but your Docker instance will have a second process in the background, without monitoring).
Just pass the environment variable CRON_MIN
to your docker run
command,
containing a valid cron minute definition such as '13,43'
(recommended) or '*/20'
.
Not passing the CRON_MIN
environment variable – or setting it to empty string – will disable the cron daemon.
sudo docker run -d --restart unless-stopped --log-opt max-size=10m \
-v $(pwd)/data:/var/www/FreshRSS/data \
-e 'CRON_MIN=13,43' \
-p 8080:80 \
--name freshrss freshrss/freshrss
Traditional solution.
Set a cron job up on your host machine, calling the actualize_script.php
inside the FreshRSS Docker instance.
Remember not pass the CRON_MIN
environment variable to your Docker run, to avoid running the built-in cron daemon of option 1.
Example on Debian / Ubuntu: Create /etc/cron.d/FreshRSS
with:
7,37 * * * * root docker exec --user apache -it freshrss php ./app/actualize_script.php > /tmp/FreshRSS.log 2>&1
For advanced users. Offers good logging and monitoring with auto-restart on failure. Watch out to use the same run parameters than in your main FreshRSS instance, for database, networking, and file system. See cron option 1 for customising the cron schedule.
sudo docker run -d --restart unless-stopped --log-opt max-size=10m \
-v $(pwd)/data:/var/www/FreshRSS/data \
-e 'CRON_MIN=17,37' \
--name freshrss_cron freshrss/freshrss \
crond -f -d 6
# See FreshRSS data (it is on the host)
cd ./data/
# See Web server logs
sudo docker logs -f freshrss
# Enter inside FreshRSS docker container
sudo docker exec -it freshrss sh
## See FreshRSS root inside the container
ls /var/www/FreshRSS/
Use a reverse proxy on your host server, such as Træfik or nginx, with HTTPS, for instance using Let’s Encrypt.
Example with docker-compose
A docker-compose.yml file is given as an example, using PostgreSQL. In order to use it, you have to adapt:
- In the
postgresql
service:- the
volumes
section. Be careful to keep the path/var/lib/postgresql/data
for the container. If the path is wrong, you will not get any error but your db will be gone at the next run; - the
POSTGRES_PASSWORD
in theenvironment
section;
- the
- In the
freshrss
service:- the
volumes
section; - options under the
labels
section are specific to Træfik, a reverse proxy. If you are not using it, feel free to delete this section. If you are using it, adapt accordingly to your config, especially thetraefik.frontend.rule
option. - the
environment
section to adapt the strategy to update feeds.
- the
You can then launch the stack (postgres + freshrss) with:
docker-compose up -d