From ebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Thu, 7 May 2026 12:45:26 +0100 Subject: add scripts and cron jobs --- docker-compose.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'docker-compose.yaml') diff --git a/docker-compose.yaml b/docker-compose.yaml index 204c145..daa6d62 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -29,6 +29,15 @@ services: # Copy the entrypoint script into the container COPY entrypoint.bash / + # Copy cron jobs + COPY etc/cron.d/* /etc/cron.d/ + + # Copy scripts + COPY scripts/* /scripts/ + + # Set appropriate permissions for the scripts + RUN chmod +x /scripts/* + # Make the entrypoint script executable RUN chmod +x /entrypoint.bash -- cgit v1.2.3