From 806f0ded3a4dfa59167bb7cb9030166c68cf2e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz> Date: Tue, 25 Oct 2022 20:48:14 +0200 Subject: [PATCH] crontab experiment --- .gitlab-ci.yml | 2 +- Dockerfile | 3 +++ crontab | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 crontab diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c62e84..8a0aa20 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ image: docker:20.10.9 variables: DOCKER_TLS_CERTDIR: "/certs" - BUILD_VERSION: p7 + BUILD_VERSION: p8 services: - docker:20.10.9-dind diff --git a/Dockerfile b/Dockerfile index d51ab28..74f9983 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ FROM bitnami/phpbb:3.3.8 MAINTAINER Andrej Ramašeuski <andrej.ramaseuski@pirati.cz> +RUN install_packages cron +COPY crontab /etc/cron.d/ COPY phpbb /opt/bitnami/phpbb +CMD [ ( cron -f -l 8 & ) & "/opt/bitnami/scripts/apache/run.sh" ] diff --git a/crontab b/crontab new file mode 100644 index 0000000..cf40167 --- /dev/null +++ b/crontab @@ -0,0 +1 @@ +*/5 * * * * daemon /opt/bitnami/php/bin/php /opt/bitnami/phpbb/bin/phpbbcli.php -v cron:run -- GitLab