Create a docker-compose.yaml file by running the following command sudo nano docker-compose.yaml
Docker Compose Command
version: "2.1"
services:
freshrss:
image: lscr.io/linuxserver/freshrss:latest
container_name: freshrss
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/data:/config
ports:
- 80:80
restart: unless-stopped
Above is the code required to deploy FreshRSS
- Copy and paste the code above into the
docker-compose.yaml
file.
- Next we want to edit the line 10 in the docker-compose.yaml file they currently read
/path/to/data:/config
- Update line 10, so it reads (refer to instruction 5 above if this doesn't make sense or you arent sure what to update with
/home/[YOUR-USER-NAME]/freshrss:/config
- Once everything is copied and pasted in and edited press control+x (at the same time) on your keyboard to exit editing mode.
- Press Y then return on your keyboard to save everything
- Once you have the compose file setup, run 'sudo docker-compose up -d'
- Containers will be setup and created.
No Comments