85751/how-to-remove-a-docker-container-using-ansible-playbook
Hi Guys,
I have launch one container in remote system using Ansible playbook. Now I don't need this container. How can remove this container?
Hi@akhtar,
You can set the state=absent in your playbook. The docker_container module has the capability to control the state of a container as shown below.
- name: Stop a container docker_container: name: mycontainer state: absent
Adding to kalgi's answer, You can also ...READ MORE
You must have come across the /var/run/docker.sock file, ...READ MORE
To save an image to any file ...READ MORE
You need to get inside the container ...READ MORE
When you use docker-compose down, all the ...READ MORE
Hey @nmentityvibes, you seem to be using ...READ MORE
It can work if you try to put ...READ MORE
To solve this problem, I followed advice ...READ MORE
Hi@akhtar, It's correct that the network argument of ...READ MORE
Hi@akhtar, To install packages in a docker container, ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.