• Create the BASH script to start the containers: ``` cat « “EOF” | tee /home/howard/scripts/docker-containers-start.sh #!/bin/bash

Mirakurun and EPGSTATION

cd /home/howard/git/docker-mirakurun-epgstation/ && docker compose up -d

Jellyfin

cd /home/howard/docker_compose_files/jellyfin/ && docker compose up -d EOF

* Make the script executable:

chmod +x /home/howard/scripts/docker-containers-start.sh

* Create the `BASH` script to stop the containers:

cat « “EOF” | tee /home/howard/scripts/docker-containers-stop.sh #!/bin/bash

Mirakurun and EPGSTATION

cd /home/howard/git/docker-mirakurun-epgstation/ && docker compose down

Jellyfin

cd /home/howard/docker_compose_files/jellyfin/ && docker compose down EOF

* Make the script executable:

chmod +x /home/howard/scripts/docker-containers-stop.sh ```

  • Add the scripts to KDE Autostart.

Updated: