mirror of
https://github.com/resourcespace/docker.git
synced 2025-10-07 10:04:27 +00:00
11 lines
207 B
Bash
11 lines
207 B
Bash
#!/bin/bash
|
|
|
|
# Start cron service
|
|
service cron start
|
|
|
|
# Ensure daily cron jobs are executable
|
|
chmod +x /etc/cron.daily/*
|
|
|
|
# Start Apache in the foreground (keeps the container alive)
|
|
apachectl -D FOREGROUND
|