Difference between revisions of "Docker"

From Teknologisk videncenter
Jump to: navigation, search
m
m
Line 9: Line 9:
 
|docker container ls||Status of running containers (As above)
 
|docker container ls||Status of running containers (As above)
 
|-
 
|-
|docker run ubuntu|| Run container ubuntu (Terminates as its bash exits)
+
|docker run ubuntu|| Run container ubuntu (Terminates as its bash exits) - pull container if not present
 
|-
 
|-
 
|docker run -it ubuntu|| Run container ubuntu -it = interactive tty
 
|docker run -it ubuntu|| Run container ubuntu -it = interactive tty
 
|-
 
|-
 +
|docker pull nginx || pull container from repository (default docker hub)
 +
|-
 
|}
 
|}
  

Revision as of 16:03, 22 September 2024


command Explanation
docker ps Status of running containers
docker container ls Status of running containers (As above)
docker run ubuntu Run container ubuntu (Terminates as its bash exits) - pull container if not present
docker run -it ubuntu Run container ubuntu -it = interactive tty
docker pull nginx pull container from repository (default docker hub)