Replies: 3 comments
-
I'm not sure what your question is, exactly. If you've applied labels to your containers, you can export them with docker commands. You could use a bash script like what's below to list out your scheduled jobs by their labels prefixed with "chadburn".
|
Beta Was this translation helpful? Give feedback.
0 replies
-
As a follow-up, you could export with a one-liner: docker ps -aq --format '{{.ID}}' | xargs -I {} docker inspect --format='{{.ID}}: {{.Config.Labels}}' {} | grep ': chadburn' |
Beta Was this translation helpful? Give feedback.
0 replies
-
my bad, just a list of all runing jobs, including docker labels and chadburn config file |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It can be seen in command line or logs for convenient task management
Beta Was this translation helpful? Give feedback.
All reactions