aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yaml
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-07 12:45:26 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-07 12:45:26 +0100
commitebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15 (patch)
treea88def48ee3b7440d69af57908417531e7fcbcfa /docker-compose.yaml
parentce17cbc9bcd1a9745e9fb8ffc88215773e974101 (diff)
downloadgit.zue.dev-ebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15.tar
git.zue.dev-ebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15.tar.gz
git.zue.dev-ebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15.tar.bz2
git.zue.dev-ebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15.tar.xz
git.zue.dev-ebd65b62f4f314e7c1a6fe1c847fc2cec52e4f15.zip
add scripts and cron jobs
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r--docker-compose.yaml9
1 files changed, 9 insertions, 0 deletions
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