docker system df
docker logs -f --timestamps my-container
docker cp my-container:/etc/nginx/nginx.conf .
docker exec -it my-container sh
docker exec -it my-container bash docker run --rm -it alpine sh
docker inspect my-container
docker inspect -f “{{.NetworkSettings.IPAddress}}” my-containerdocker ps -a
docker run -v /data:/app/data alpine
docker container prune
docker stats
docker build -t myapp:1.0 .
docker images
docker system prune -a
docker push registry.example.com/myapp:1.0
docker rmi $(docker images -q) -f