build image:
docker build -t nodeapp:latest .
run container:
docker run -p 3000:3000 -d --name nodeapp_latest nodeapp:latest
build image:
docker build -t pythonapp:latest .
run container:
docker run -it --name pythonapp_latest pythonapp:latest
- All images
docker image ls
- All containers
docker ps -a