mirror of
https://github.com/chevereto/docker.git
synced 2025-12-17 21:49:45 +01:00
7 lines
204 B
Bash
Executable File
7 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
while IFS= read -r ID; do
|
|
echo "🆔 $ID"
|
|
docker exec --user www-data $ID app/bin/legacy -C cron || true
|
|
done <<<"$(docker ps | grep "chevereto:" | awk '{ print $1 }')"
|