Building an Image
Run the following command to build an image:
1 | docker build -t mymysql/centos8-mysql-arm:8.0.19 . |
If "Successfully built" is displayed in the command output, the image is successfully built.
- The docker build command must be executed in the directory where Dockerfile is located.
- Do not omit the space and the dot at the end of the command.
Parent topic: Constructing a MySQL Docker Image