mirror of
https://github.com/Red5d/docker-autocompose
synced 2026-01-03 23:28:02 +00:00
Enable generating compose files for containers that aren't running.
This commit is contained in:
@@ -30,9 +30,9 @@ def generate(cname):
|
|||||||
c = docker.from_env()
|
c = docker.from_env()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
cid = [x.short_id for x in c.containers.list() if cname == x.name or x.short_id in cname][0]
|
cid = [x.short_id for x in c.containers.list(all=True) if cname == x.name or x.short_id in cname][0]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
print("That container is not running.")
|
print("That container is not available.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
cattrs = c.containers.get(cid).attrs
|
cattrs = c.containers.get(cid).attrs
|
||||||
|
|||||||
Reference in New Issue
Block a user