bash - docker automatically commit and push -
i'm trying setup gui application in docker use on different computers exact same configuration. container working have commit , push changes manually.
is there way automatically commit , push changes of docker container after container stopped (by closing application).
thanks helping, flo
i don't know of tool automatically, write one. docker emits events when containers stop, have process subscribes events (or cron job polls them) , when detects closed container (maybe own naming convention?), automatically docker commit
, tag.
the events available via docker events
(docs), , docker remote rest api.
Comments
Post a Comment