pyratelog

personal blog
git clone git://git.pyratebeard.net/pyratelog.git
Log | Files | Refs | README

commit e22d581434c9424c7a65e8f3e091ce13f3cb9446
parent 14bfc7ada0094b9f08132e537fbfdd02d28d80f3
Author: pyratebeard <root@pyratebeard.net>
Date:   Wed, 29 Dec 2021 14:31:36 +0000

remove docker stuff

Diffstat:
DDockerfile | 21---------------------
Dsupervisord.conf | 26--------------------------
2 files changed, 0 insertions(+), 47 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -1,21 +0,0 @@ -from alpine:latest -run apk add --no-cache \ - git \ - build-base \ - gcc \ - abuild \ - binutils \ - cmake \ - extra-cmake-modules \ - python3 \ - supervisor - -run curl -fsSL "https://github.com/jgm/pandoc/releases/download/2.11.3.2/pandoc-2.11.3.2-linux-amd64.tar.gz" -o /tmp/pandoc.tar.gz ; \ - tar xvzf /tmp/pandoc.tar.gz --strip-components 1 -C /usr/local/ - -copy supervisord.conf /etc/ - -run mkdir /pyratelog -copy pyratelog.sh post_template.html style.css /pyratelog/ - -entrypoint /usr/bin/supervisord -c /etc/supervisord.conf diff --git a/supervisord.conf b/supervisord.conf @@ -1,26 +0,0 @@ -[supervisord] -user=root -nodaemon=true -logfile=/tmp/supervisord.log -childlogdir=/tmp -pidfile = /tmp/supervisord.pid - -[program:python-http] -command=python3 -m http.server --directory /pyratelog -stdout_logfile=/dev/stdout -stdout_logfile_maxbytes=0 -stderr_logfile=/dev/stdout -stderr_logfile_maxbytes=0 -autostart=true -autorestart=true -startretries=0 - -[program:pyratelog] -command=sh /pyratelog/pyratelog.sh -stdout_logfile=/pyratelog/pyrate.log -stdout_logfile_maxbytes=100 -stderr_logfile=/pyratelog/pyrate.err -stderr_logfile_maxbytes=100 -autostart=true -autorestart=true -startretries=0