mirror of
https://github.com/tiyn/wiki.git
synced 2025-10-09 17:38:14 +02:00
1.9 KiB
1.9 KiB
linuxserver - jellyfin
This is a Docker container for a
freshrss server.
The official container and documentation was made by
linuxserver.
This docker-rebuild is made up by a docker-compose.yml
file.
Set-up
Create the files rebuild.sh
and docker-compose.yml
at the same place.
Change the settings according to your needs and run ./rebuild.sh
afterwards.
Environment-variables
Set the following environment-variables in the environment:
section of the
docker-compose file.
Name | Usage | Default |
---|---|---|
PUID |
Userid to run the container | |
PGID |
Groupid to run the container | |
TZ |
specify the timezone |
Volumes
Set the following volumes in the volumes:
section of the docker-compose file.
Outside mount/volume name | Container mount | Description |
---|---|---|
config |
/config |
storage for config files of jellyfin |
Ports
Set the following ports in the ports:
section.
Container Port | Recommended outside port | Protocol | Description |
---|---|---|---|
7008 |
80 |
TCP | WebUI |
rebuild.sh
#!/bin/sh
docker-compose down
docker pull lscr.io/linuxserver/freshrss:latest
docker-compose up -d
docker-compose.yml
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