5 lines
107 B
Bash
Executable file
5 lines
107 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
containerName="$1"
|
|
docker exec "$containerName" php -f /var/www/html/cron.php
|