1. First, create a hello-world.cpp file The program code is as follows: #include <iostream> using namespace std; int main () { cout << "hello-world" << endl; cout << "my first docker" << endl; return 0; } For example, I created a DockerFile/hello-world directory in my home path and created a hello-world.cpp source file in it. 2. Write DockerFile file This file and the source file are in a folder named hello-dockerfile as shown above. FROM codenvy/cpp_gcc RUN mkdir /home/user/myapp ADD hello-world.cpp /home/user/myapp WORKDIR /home/user/myapp RUN g++ hello-world.cpp -o hello CMD ["./hello"] The commands for Dockerfile can be found in another blog of mine: https://www.jb51.net/article/197996.htm 1. FROM codenvy/cpp_gcc FROM is followed by the base image used by the target image. There can be only one base image. You can use the docker search command to find the base image you want on the docker Hub . Since we want to compile a C++ file, we can use an image with g++ or gcc as the base image. We can search for an image with g++, as shown below: For example, I use the second one, and then pull the image to the local through the docker pull command, as shown in the following figure Enter the docker images command to view all local images, as shown in the following figure: For example, I have two images here: one is the codenvy/cpp_gcc that I just downloaded, and the other is the ubuntu image. Some people may wonder here, why not just use the Ubuntu image? In our impression, Ubuntu comes with g++ and gcc compilers, and this image is relatively small. Let me explain here: Since the ubuntu image under docker only retains things related to the ubuntu kernel, everything outside the core has been deleted as much as possible. This also explains why the ubuntu image we usually install is nearly two GB, while the ubuntu image of docker is only more than seventy MB. There are no gcc and g++ commands in this Ubuntu image, not even sudo commands, so you need to download and configure them manually. For example, we use the ubuntu image to generate a container: Then check the version of g++: Found that g++ was not installed Neither does the sudo command. 2. RUN mkdir /home/user/myapp The RUN command is required when building a container, followed by our common Linux commands. This command creates a new myapp folder in the /home/user path. 3. ADD hello-world.cpp /home/user/myapp The ADD command copies files from the host machine to the image. You can also use the COPY command, but ADD is more powerful than COPY . ADD has a decompression function. This command copies the hello-world.cpp source file created in the first step to the /home/user/myapp path in the image. 4. WORKDIR /home/user/myapp The WORKDIR command specifies the default working directory of the container when creating the container. This command uses the home/user/myapp path in the image as the default working path. 5. RUN g++ hello-world.cpp -o hello This command uses g++ to compile the hello-world.cpp source file and build an executable file hello 6. CMD ["./hello"] CMD is the first command to be run after the specified container is created. This command runs the executable file hello built in the previous step 3. Create an image Use command: docker build -f ./hello-dockerfile -t my_hello_docker:v1.0 .
The process of building an image is shown in the following figure: After the build is complete, we check whether the build is successful and view all the current local images through the docker images command: Here we see one more image: my_hello_docker , which is the image we just created, indicating that the image was built successfully. 4. Run a container through the image Instantiate a container with the following command docker run my_hello_docker:v1.0 Then you will get the following output: The output is consistent with the C++ file we wrote, indicating that Docker was successfully used to deploy a simple C/C++ program and achieve the goal. This is the end of this article about how to use docker to deploy a simple c/c++ program. For more information about how to deploy c/c++ programs with docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL export of entire or single table data
>>: Vue implements small form validation function
Error occurs: When exporting the database from My...
This article uses an example to illustrate the us...
Unicode Signature BOM - What is the BOM? BOM is th...
Docker tag detailed explanation The use of the do...
When we write code, we often need to know the dif...
This section provides an overview of some other i...
<br />I have summarized the annotation writi...
Table of contents In the React official website, ...
Table of contents 1. The magical extension operat...
Table of contents How to start mysqld Method 1: m...
Hardware View Commands system # uname -a # View k...
The installation tutorial of mysql5.7.17 is share...
flex layout Definition: The element of Flex layou...
Table of contents Preface: Kind tips: variable 1....
In design work, I often hear designers participati...