Difference between revisions of "Docker run"
Jump to navigation
Jump to search
↑ https://hub.docker.com/_/nginx
(→Errors) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
* <code>[[docker run --help]]</code> | * <code>[[docker run --help]]</code> | ||
+ | [[-i]], --interactive Keep STDIN open even if not attached | ||
+ | [[-t]], [[--tty]] Allocate a pseudo-TTY | ||
[[-e]] (Environment variables) | [[-e]] (Environment variables) | ||
[[--env-file]] | [[--env-file]] | ||
Line 93: | Line 95: | ||
== Errors == | == Errors == | ||
* <code>WARNING: The requested image's [[platform]] (linux/[[amd64]]) does not match the detected host platform ([[linux/arm64/v8]]) and no specific platform was requested</code> | * <code>WARNING: The requested image's [[platform]] (linux/[[amd64]]) does not match the detected host platform ([[linux/arm64/v8]]) and no specific platform was requested</code> | ||
+ | * <code>[[failed: port is already allocated.]]</code> | ||
== Activities == | == Activities == |
Latest revision as of 18:18, 22 February 2024
docker run IMAGE|IMAGE_ID
-i, --interactive Keep STDIN open even if not attached -t, --tty Allocate a pseudo-TTY -e (Environment variables) --env-file -d dettach -v -p -w -u 0 --rm --name --user --link (deprecated) (See also: Kibana/Install Kibana using docker) --privileged --group-add $(getent group docker | cut -d: -f3) --volume
Contents
Examples[edit]
docker run alpine
docker run ubuntu
docker run node
docker run -it alpine /bin/sh
docker run --name your-container-name your-gitlab-registry.your-domain.com:5050/your-project/your-repo:your-tag
docker run 1231243.dkr.ecr.eu-central-1.amazonaws.com/your-repo:yourimage
docker run -v NEW_VOLUME_NAE:/path/inside/container -it alpine /bin/sh
docker run --name zabbix-appliance -p 80:80 -p 10051:10051 -d zabbix/zabbix-appliance:latest
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" opensearchproject/opensearch:1.3.1
docker run -d --name=grafana -p 3000:3000 grafana/grafana
(Docker-compose.yml (Grafana))docker run -it --name teamcity-server-instance -v /YOUR_FOLDER_TO_DATA:/data/teamcity_server/datadir -v /YOUR_FOLDER_TO_LOGS:/opt/teamcity/logs -p 8111:8111 jetbrains/teamcity-server
docker run -p 9000:9000 minio/minio server /data
docker run -d --log-driver=journald YOUR_CONTAINER
docker run -d -p 8080:8080 nodejs/app:latest
35a35860802541a4f2267c28f3afd7de175731a2c6c80c84e992ce6062f5a9dd
docker run --name my-custom-nginx-container -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx
[1]docker run --name some-nginx-name -d -p 8080:80 some-content-nginx-image
docker run -d -it --name devtest --mount type=bind,source="$(pwd)"/target,target=/app nginx:latest
Windows example:
docker run --hostname=localhost --mac-address=02:42:11:11:00:01 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --restart=no --label='org.opencontainers.image.ref.name=ubuntu' --label='org.opencontainers.image.version=23.10' --runtime=runc -t -d ubuntu:rolling
Logstash[edit]
docker run --rm -it -v ~/pipeline/:/usr/share/logstash/pipeline/ docker.elastic.co/logstash/logstash:7.8.0
OpenShift[edit]
docker run -t -u `id -u` \ -v $HOME/.ssh/id_rsa:/opt/app-root/src/.ssh/id_rsa:Z \ -v $HOME/ansible/hosts:/tmp/inventory:Z \ -e INVENTORY_FILE=/tmp/inventory \ -e PLAYBOOK_FILE=playbooks/prerequisites.yml \ -e OPTS="-v" \ registry.redhat.io/openshift3/ose-ansible:v3.11
docker run wrong_image_name Unable to find image 'wrong_image_name:latest' locally docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": context deadline exceeded (Client.Timeout exceeded while awaiting headers). See 'docker run --help'.
docker run socat
docker: Error response from daemon: pull access denied for socat, repository does not exist or may require 'docker login': denied: requested access to the
resource is denied.
See 'docker run --help'.
Solution: docker run alpine/socat
docker: unknown server OS: . Solution: start docker
Runtime constraints on resources[edit]
-m --memory=""
--oom-kill-disable=false
Whether to disable OOM Killer for the container or not.--cpus=0.000
https://medium.com/@oprearocks/how-to-properly-override-the-entrypoint-using-docker-run-2e081e5feb9d
docker run --entrypoint "/bin/ls" debian -al /root
docker run -it --entrypoint /usr/bin/redis-cli example/redis --help
docker run -dit --rm --privileged --name dind docker:dind
Errors[edit]
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
failed: port is already allocated.
Activities[edit]
- Understand the difference between
docker start
anddocker run
: https://stackoverflow.com/questions/34782678/difference-between-running-and-starting-a-docker-container. See also runC - Understand Start configuration behavior and restart policy
Related terms[edit]
docker start
docker pull
docker build
dockerd
- /var/run/docker.pid
- /var/run/docker.sock
- PortBindings
docker volume
docker-compose.yml
DOCKER_OPTS="--dns 8.8.8.8"
podman run
no basic auth credentials.
not found: manifest unknown: Requested image not found.
kubectl run
- URI
- docker run --cap-add
- Ctrl + p and Ctrl + q to exit without stopping container
See also[edit]
docker run [ -it | -d -it | --mount | --volume | --name | --env | --publish | --rm | --help ]
docker start
,docker start --help
Advertising: