Open JeiKeiLim opened 11 months ago
There is lastexecid on ducker.yaml file which stores the last container id.
lastexecid
Storing lastexecid on .ducker.yaml causes cumbersome on git tracking. Find another way to exec the last container.
We can find the last exec container id by docker command docker ps --filter
docker ps --filter
Example)
$ docker ps -f ancestor=jeikeilim/ducker -a -qn1 c3833ad81cde
As is
There is
lastexecid
on ducker.yaml file which stores the last container id.How it should be
Storing
lastexecid
on .ducker.yaml causes cumbersome on git tracking. Find another way to exec the last container.How to solve
We can find the last exec container id by docker command
docker ps --filter
Example)