-
-
Notifications
You must be signed in to change notification settings - Fork 35
Known Limitations
Kim Oliver Drechsel edited this page Aug 11, 2024
·
9 revisions
This page is about the known limitations of the current implementation of the project. It is important to know these limitations before using the project in a production environment.
Docker currently does not support updating labels, which means that renaming a deployed project is not possible. If you need to rename a project, you will need to create a new project with the new name and migrate the data manually.
Doco CD currently does not remove volumes, networks or images when a project is removed. You will need to manually remove these resources using the Docker CLI, for example:
docker compose -p <project_name> down
docker image prune -a
docker network prune
docker volume prune -a