#!/bin/sh
# podman image ls
podman build -t build-env-dev - < Dockerfile

### Stop all containers with:
#docker stop $(docker ps -q)

### Remove unused images with:
# docker image prune --all

### Remove all dangling data, i.e. containers stopped, volumes excluding
### containers and images with no containers:
# docker system prune --all

