docker inspect -f "{{.Name}} {{ .HostConfig.RestartPolicy }}" $(docker ps -a -q)
docker rm $(docker ps -a -q) -f
docker rm $(docker ps -a --filter="name=-dev" -q) -f
docker rmi $(docker images -a --filter=dangling=true -q)
dkbo run \
--detach \
--env VIRTUAL_HOST="<APP_URL_FOR_NGINX>" \
--env VIRTUAL_PORT=8080 \
--env ENVIRONMENT=<ENV> \
--name=<CHOOSE_CONTAINER_NAME> \
--publish-all \
<IMAGE>
copy the corrupted file from the container, fix it locally, then recopy it inside the container.
docker cp docker_web_1:/etc/apache2/sites-enabled/apache.conf . (correct the file) docker cp apache.conf docker_web_1:/etc/apache2/sites-enabled/apache.conf