aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docker/entrypoint.sh (unfollow)
Commit message (Collapse)Author
2023-02-27docker: remove entrypoint.shEgor Tensin
The remainder functionality fits nicely to run.sh.
2023-02-25docker: ignore missing config fileEgor Tensin
It allows doing something like docker run -it --rm egortensin/cgitize:latest sh (without the missing file errors).
2023-02-25remove dead codeEgor Tensin
2023-02-25docker: rename schedule.sh to run_cron.shEgor Tensin
2022-12-03docker: factor out cron stuff into schedule.shEgor Tensin
It can be easily reused that way.
2022-12-03frontend: fix /mnt/cgitize being inaccessible to nginxEgor Tensin
I've had problems with doing "FROM nginx" instead of "FROM alpine" in the past, but hopefully fixing a version is enough to prevent them.
2022-12-03docker: chmod o-rwx the output directoryEgor Tensin
2022-12-03docker: refactor entrypoint.shEgor Tensin
2022-04-09docker: use pip install --targetEgor Tensin
2022-03-26docker: run once at startup, even when in cronEgor Tensin
2022-03-15docker: best practicesEgor Tensin
2021-08-02docker: fix CMD handlingEgor Tensin
It was difficult to override CMD (due to the requirement to `activate` the venv), move the `activate` call to entrypoint.sh.
2021-03-30docker: enable scheduled runs via crondEgor Tensin