mirror of
https://github.com/chevereto/docker.git
synced 2026-02-03 21:09:05 +01:00
7 lines
201 B
Bash
Executable File
7 lines
201 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/cli -C cron || true
|
|
done <<<"$(docker ps | grep "chevereto:" | awk '{ print $1 }')"
|