diff options
Diffstat (limited to 'docker-compose.yaml')
| -rw-r--r-- | docker-compose.yaml | 9 |
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 |
