Outils pour utilisateurs

Outils du site


informatique:docker:lbcalert

Ceci est une ancienne révision du document !


LBCAlert

Afin de se créer gratuitement des alertes sur LeBonCoin j'utilise l'application web LBCAlert.

Création d'un docker NGinx/PHP sur la base richarvey/nginx-php-fpm.
Il s'agit d'ajouter un crontab et de lancer le démon crond dans la foulée. Il est donc nécessaire de créer son image telle que :

Dockerfile

FROM richarvey/nginx-php-fpm
LABEL maintainer "florian <[email protected]>"
 
#########################################
##         RUN INSTALL SCRIPT          ##
#########################################
RUN touch crontab.tmp \
    && echo '* */1 * * * php /var/www/html/check.php'> crontab.tmp \
    && crontab crontab.tmp \
    && rm -rf crontab.tmp
 
RUN touch /startup.sh \
    && echo '/bin/bash /start.sh &'> /startup.sh \
    && echo '/usr/sbin/crond -f -d 0'>> /startup.sh \
    && chmod +x /startup.sh
 
CMD ["/startup.sh"]

On lance le build de l'image :

docker build --no-cache -t "florian/lbcalert" .

On lance le docker :

docker run -d --restart=always --name="Nginx_LBCAlert" -p 8080:80 -e "PUID=`id -u florian`" -e "PGID=`id -g florian`" -v /mnt/Raid/Documents_de_Florian/Documents_NAS/Dockers/Docker_Data/Nginx_LBCAlert/:/var/www/html florian/lbcalert

Il suffit ensuite de déployer l'application à la racine de NGinx et de configurer le tout via l'interface d'administartion.
J'utilise les notifications Mail, Pushbullet et Sms via les sms gratuits de Free.

Redoutable pour ne pas rater les bonnes affaires .

informatique/docker/lbcalert.1489074671.txt.gz · Dernière modification : 2025/01/14 11:19 (modification externe)