docker:images:create_an_image
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docker:images:create_an_image [2020/05/13 08:39] – created peter | docker:images:create_an_image [2021/09/24 20:53] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Docker - Images - Create an image ====== | ====== Docker - Images - Create an image ====== | ||
+ | |||
+ | <file yaml Dockerfile> | ||
+ | FROM ubuntu | ||
+ | | ||
+ | RUN apt-get update && \ | ||
+ | apt-get upgrade -y && \ | ||
+ | apt-get autoremove -y && \ | ||
+ | apt-get install -y curl && \ | ||
+ | apt-get install -y most && \ | ||
+ | apt-get install -y htop && \ | ||
+ | apt-get install -y rar && \ | ||
+ | apt-get install -y p7zip && \ | ||
+ | apt-get install -y p7zip-full && \ | ||
+ | apt-get install -y p7zip-rar && \ | ||
+ | apt-get install -y unrar && \ | ||
+ | apt-get install -y mlocate | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Build ===== | ||
+ | |||
+ | <code bash> | ||
+ | docker build --tag test . | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Sending build context to Docker daemon | ||
+ | Step 1/2 : FROM ubuntu | ||
+ | | ||
+ | Step 2/2 : RUN apt-get update && | ||
+ | | ||
+ | Get:1 http:// | ||
+ | Get:2 http:// | ||
+ | Get:3 http:// | ||
+ | Get:4 http:// | ||
+ | Get:5 http:// | ||
+ | Get:6 http:// | ||
+ | Get:7 http:// | ||
+ | Get:8 http:// | ||
+ | Get:9 http:// | ||
+ | Get:10 http:// | ||
+ | Get:11 http:// | ||
+ | Get:12 http:// | ||
+ | Get:13 http:// | ||
+ | Get:14 http:// | ||
+ | Get:15 http:// | ||
+ | Get:16 http:// | ||
+ | Get:17 http:// | ||
+ | Get:18 http:// | ||
+ | Fetched 19.1 MB in 1s (14.9 MB/s) | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Test ===== | ||
+ | |||
+ | Enter into the shell of the running | ||
+ | |||
+ | <code bash> | ||
+ | docker run -ti test | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | root@038e5ac922e4:/# | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | Try to run **htop**. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <WRAP center round todo 60%> | ||
+ | MOVE BELOW INTO SEPARATE LOCATION | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Install Debian Base Packages ===== | ||
+ | |||
It’s fairly simple to install Debian’s base packages on your current machine and it doesn’t matter if you’re currently not on a Debian host system. | It’s fairly simple to install Debian’s base packages on your current machine and it doesn’t matter if you’re currently not on a Debian host system. |
docker/images/create_an_image.1589359180.txt.gz · Last modified: 2020/07/15 09:30 (external edit)