The main idea is to make my pc run a script on boot in wich x11docker takes care of lifting a container with a youtube video.
this is mi crontab -e:
@reboot /usr/local/sbin/script-exo.sh
script im trying to run:
#!/bin/bash
x11docker --xephyr -I exo-test
script is located in /usr/local/sbin
the status of cron.service is active (running), logs doesn't have any issue or warning.
Also, the script by itself it's fine, if i run bash script-exo.sh it works. I've also tried to run the script with SystemD and Init.d but nothing makes it start on boot. Any suggestion?
x11docker repo https://github.com/mviereck/x11docker