jpmc216 / EKG-Foundations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some inspiration from

https://training.play-with-docker.com/beginner-linux/

Dockerfile commands

https://docs.docker.com/engine/reference/builder/

List all docker images

docker images

view running dockers

docker ps --format "table {{.ID}}\t{{.Names}}\t{{.Status}}" docker ps --format "table {{.ID}}\t{{.Ports}}\t{{.Names}}\t{{.Status}}" https://docs.docker.com/engine/reference/commandline/ps/

Stop all running Docker containers

docker kill $(docker ps -q)

Delete all containers not running

docker system prune

Attach VSCode to running container

https://code.visualstudio.com/docs/remote/attach-container

Docker compose

docker-compose --profile airflow up

About


Languages

Language:PLpgSQL 97.4%Language:HTML 1.2%Language:Shell 0.8%Language:Python 0.4%Language:Dockerfile 0.2%