Horje
docker run Code Example
docker compose run
# One single docker-compose.yml file
docker-compose up --build -d --remove-orphans

# Specify docker-compose.yml file to run
docker-compose -f docker-compose.yml up --build -d --remove-orphans
docker run command on container
sudo docker exec -it <container name> <command>
docker run
# DOCS Docker run (basic usage)
-d :-d=false: Detached mode: Run container in the background, print new container id
-t : Allocate a pseudo-tty
-i : Keep STDIN open even if not attached
-p : publicPort:InsideDockerPort  -  8456:443 
--restart <always/no/on-failure/unless-stopped>
--name ContainerName
--mount type=bind,source=/route/to/path/in/host,target=/route/to/path/inside/docker

Example:
 docker run -d -it --restart always --name ContainerName -p 8456:443 --mount type=bind,source=/home/example/path/logs,target=/app/logs imagename:latest
Run docker in docker
RUN apt-get update \
  && apt-get install apt-transport-https ca-certificates \
  && echo "deb https://apt.dockerproject.org/repo debian-jessie main" > /etc/apt/sources.list.d/docker.list \
  && apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D \
  && apt-get update \
  && apt-get install -y docker-engine
Source: github.com
docker run -e
docker run --cap-add=ALL --cap-drop=MKNOD ...
dockerfile run app cmd
RUN apt-get install python3
CMD echo "Hello world"
ENTRYPOINT echo "Hello world"




Shell

Related
merge branch from another repo Code Example merge branch from another repo Code Example
npm list commands Code Example npm list commands Code Example
linux calculator Code Example linux calculator Code Example
what is guthub Code Example what is guthub Code Example
git delete branch Code Example git delete branch Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11