How it works…

Verify whether the Docker image has been created successfully by executing the following command:

$ docker images

This will list all the top-level images, their repositories, tags, and their size, as shown in the following screenshot:

The Dockerfile we created in this recipe is exactly the same as the one we created in one of our previous recipes, except for the two additional commands that install the Go MySQL Driver and the Gorilla Mux URL router while building the image, as follows:

...
RUN go get github.com/go-sql-driver/mysql;

RUN go get github.com/gorilla/mux;
...
See the Building your first Go Docker image recipe.
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.15.214.155