Skip to content

ErsatzTV-Filler Installation (Docker)

Docker Install

  1. Download the latest container image

    docker pull liam2003/ersatztv-filler

  2. Create Directories to store container data

    1. Create a directory to store configuration data

      mkdir /path/to/config

    2. Create a directory to store custom audio files (if not using an existing audio location)

      mkdir /path/to/audio

    3. Create a directory to store logs

      mkdir /path/to/logs

    4. Create a directory to store output files

      mkdir /path/to/output

  3. Create and run a container

    sudo docker run -d \ --name ersatztv-filler \ -e TZ=Australia/Melbourne \ -p 8408:8408 \ -v /path/to/config:/app/config \ -v /path/to/themes:/app/themes \ -v /path/to/audio:/audio:ro \ -v /path/to/logs:/app/logs \ -v /path/to/output:/output \ --restart unless-stopped \ liam2003/ersatztv-filler

Note: Please note there are no explicit output or audio locations set in docker, these will need to be set in the config page but the paths above are a good reference point