I was really interested to confirm what we say on SUSE bci webpage as the first point to use our BCI container images: “Strong security and compliance”. This are my results.
[]A quick to deploy openQA container for developers
There are different ways to deploy openQA that you can follow here but usually this deployment is good for testing but for developers there is a better option described in this Kalikiana’s post
[]Docker is consuming your hard disk?
If you’re a heavy user of docker you’ll for sure have a lot of trash in your /var/lib/docker
Check for your self:
sudo du -sh /var/lib/docker
To clean it, follow these simple steps (DISCLAIMER, This will stop and remove all the current containers):
- Remove the containers (and stopped too)
docker ps -a -q | xargs docker rm -f
- Remove all downloaded and build images
docker image ls -q | xargs docker image rm -f
- Remove all volumes
docker volume ls -q | xargs docker volume rm -f