Commit d9b5c3

2026-03-21 18:33:50 joris: eerste opzet
/dev/null .. docker commands.md
@@ 0,0 1,92 @@
+ # Docker commands
+
+ Docker
+ Description Command Line Function
+ Install image X docker pull
+ View all Docker images with image ID docker image ls
+ Delete Docker image docker image rm
+ Create a Docker container docker run
+ Start a container docker start
+ Stop a container docker stop
+ Stop all containers docker stop $(docker ps -q)
+ View all Docker containers docker container ls -a
+ Delete a Docker container docker container rm
+ Search an image docker search --no-trunc home-assistant
+ Display logs of a container docker logs [container name]
+ bash in a running container docker exec -it container_name bash
+ Clean (all) docker images docker image prune -a
+ Clean everything docker system prune --volumes
+
+ Docker compose
+ Create container and start as a deamon docker compose up -d
+ Create container and start (view log files) docker compose up
+ Renew images docker compose pull
+
+ Bijwerken alle containers
+ docker compose pull && docker compose up -d
+ Command options overview and help
+ You can also see this information by running docker-compose --help from the command line.
+ Define and run multi-container applications with Docker.
+
+ Usage:
+ docker-compose [-f <arg>...] [options] [COMMAND] [ARGS...]
+ docker-compose -h|--help
+
+ Options:
+ -f, --file FILE Specify an alternate compose file
+ (default: docker-compose.yml)
+ -p, --project-name NAME Specify an alternate project name
+ (default: directory name)
+ --verbose Show more output
+ --log-level LEVEL Set log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
+ --no-ansi Do not print ANSI control characters
+ -v, --version Print version and exit
+ -H, --host HOST Daemon socket to connect to
+
+ --tls Use TLS; implied by --tlsverify
+ --tlscacert CA_PATH Trust certs signed only by this CA
+ --tlscert CLIENT_CERT_PATH Path to TLS certificate file
+ --tlskey TLS_KEY_PATH Path to TLS key file
+ --tlsverify Use TLS and verify the remote
+ --skip-hostname-check Don't check the daemon's hostname against the
+ name specified in the client certificate
+ --project-directory PATH Specify an alternate working directory
+ (default: the path of the Compose file)
+ --compatibility If set, Compose will attempt to convert deploy
+ keys in v3 files to their non-Swarm equivalent
+
+ Commands:
+ build Build or rebuild services
+ bundle Generate a Docker bundle from the Compose file
+ config Validate and view the Compose file
+ create Create services
+ down Stop and remove containers, networks, images, and volumes
+ events Receive real time events from containers
+ exec Execute a command in a running container
+ help Get help on a command
+ images List images
+ kill Kill containers
+ logs View output from containers
+ pause Pause services
+ port Print the public port for a port binding
+ ps List containers
+ pull Pull service images
+ push Push service images
+ restart Restart services
+ rm Remove stopped containers
+ run Run a one-off command
+ scale Set number of containers for a service
+ start Start services
+ stop Stop services
+ top Display the running processes
+ unpause Unpause services
+ up Create and start containers
+ version Show the Docker-Compose version information
+
+
+ Docker containers updaten
+ Overview of running containers
+ docker ps
+ dan in directory van compose file
+ docker compose pull && docker compose up -d
+ docker system prune --volumes
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9