Difference between revisions of "Docker"
From Teknologisk videncenter
m |
m |
||
| Line 14: | Line 14: | ||
|- | |- | ||
|docker run -d -p 8080:80 nginx || Run image nginx detach (portmap redirect 8080->80) public to private | |docker run -d -p 8080:80 nginx || Run image nginx detach (portmap redirect 8080->80) public to private | ||
| − | + | |- | |
|docker run -it ubuntu|| Run image ubuntu in container ( -it = interactive tty ) | |docker run -it ubuntu|| Run image ubuntu in container ( -it = interactive tty ) | ||
|- | |- | ||
Revision as of 15:13, 22 September 2024
| command | Explanation |
|---|---|
| docker ps | Status of running containers |
| docker container ls | Status of running containers (As above) |
| docker run ubuntu | Run image ubuntu in containe (Terminates as its bash exits) - pull container if not present |
| docker run -d nginx | Run image nginx detach (as daemon stdin/stdout detached) |
| docker run -d -p 8080:80 nginx | Run image nginx detach (portmap redirect 8080->80) public to private |
| docker run -it ubuntu | Run image ubuntu in container ( -it = interactive tty ) |
| docker pull nginx | pull container from repository (default docker hub) |