Skip to content

Commit 58423ed

Browse files
committed
Remove orphaned containers
1 parent 790e018 commit 58423ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doxy/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def update(ctx, service, remove):
9494
(f"Starting {service}", ["up", "-d"]),
9595
]
9696
if remove:
97-
command_chain.insert(0, (f"Stopping {service}", ["down"]))
97+
command_chain.insert(0, (f"Stopping {service}", ["down", "--remove-orphans"]))
9898
for title, command in command_chain:
9999
output.print_header(ctx, title)
100100
docker_compose_command(command, compose_file)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "doxy"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = ""
55
authors = ["jpk <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)