|
1 | 1 | # What is Go?
|
2 |
| -Go, also called golang, is a programming language initially developed at Google in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson. It is a statically-typed language with syntax loosely derived from that of C, adding garbage collection, type safety, some dynamic-typing capabilities, additional built-in types such as variable-length arrays and key-value maps, and a large standard library. |
| 2 | + |
| 3 | +Go (a.k.a., Golang) is a programming language first developed at Google. It is a |
| 4 | +statically-typed language with syntax loosely derived from C, but with |
| 5 | +additional features such as garbage collection, type safety, some dynamic-typing |
| 6 | +capabilities, additional built-in types (e.g., variable-length arrays and |
| 7 | +key-value maps), and a large standard library. |
3 | 8 |
|
4 | 9 | > [wikipedia.org/wiki/Go_(programming_language)](http://en.wikipedia.org/wiki/Go_(programming_language))
|
5 | 10 |
|
6 | 11 | # How to use this image
|
7 | 12 |
|
8 |
| -## Start a go instance running in your app. |
| 13 | +## Start a Go instance in your app |
9 | 14 |
|
10 |
| -For this image, the most straight-forward use is to use a golang container as both the build environment as well as the runtime environment. In your Dockerfile, you can do something along the lines of the following will compile and run your project. |
| 15 | +The most straightforward way to use this image is to use a Go container as both |
| 16 | +the build and runtime environment. In your `Dockerfile`, writing something along |
| 17 | +the lines of the following will compile and run your project: |
11 | 18 |
|
12 |
| - FROM golang:1.3-onbuild |
| 19 | + FROM golang:1.3.1-onbuild |
13 | 20 | CMD ["./myapp"]
|
14 | 21 |
|
15 |
| -This image includes multiple `ONBUILD` triggers so that should be all that you need for most applications. The build will `COPY . /usr/src/app`, `RUN go get -d -v`, and `RUN go build -v`. |
| 22 | +This image includes multiple `ONBUILD` triggers which should cover most |
| 23 | +applications. The build will `COPY . /usr/src/app`, `RUN go get -d -v`, and `RUN |
| 24 | +go build -v`. |
16 | 25 |
|
17 |
| -Then run and build the docker image. |
| 26 | +You can then run and build the Docker image: |
18 | 27 |
|
19 | 28 | docker build -t my-golang-app
|
20 | 29 | docker run -it --rm --name my-running-app my-golang-app
|
21 | 30 |
|
22 |
| -## Compile your app inside the docker container. |
| 31 | +## Compile your app inside the Docker container |
23 | 32 |
|
24 |
| -It is not always appropriate to run your app inside a container. In instances where you only want to compile inside the docker instance, you can do something along the lines of the following. |
| 33 | +There may be occasions where it is not appropriate to run your app inside a |
| 34 | +container. To compile, but not run your app inside the Docker instance, you can |
| 35 | +write something like: |
25 | 36 |
|
26 |
| - docker run --rm -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp golang:1.3 go build -v |
| 37 | + docker run --rm -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp golang:1.3.1 go build -v |
27 | 38 |
|
28 |
| -This will add your current directory as a volume to the container, set the working directory to the volume, and run the command `go build` which will tell go to compile the project in the working directory and output the executable to myapp. Alternatively, if you have a make file, you can instead run the make command inside your container. |
| 39 | +This will add your current directory as a volume to the container, set the |
| 40 | +working directory to the volume, and run the command `go build` which will tell |
| 41 | +go to compile the project in the working directory and output the executable to |
| 42 | +`myapp`. Alternatively, if you have a `Makefile`, you can run the `make` command |
| 43 | +inside your container. |
29 | 44 |
|
30 |
| - docker run --rm -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp golang:1.3 make |
| 45 | + docker run --rm -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp golang:1.3.1 make |
31 | 46 |
|
32 |
| -## Cross-compile your app inside the docker container. |
| 47 | +## Cross-compile your app inside the Docker container |
33 | 48 |
|
34 |
| -If you need to compile your application for a platform other than `linux/amd64` (like `windows/386`, for example), the provided `cross` tags can be used to accomplish this with minimal friction: |
| 49 | +If you need to compile your application for a platform other than `linux/amd64` |
| 50 | +(such as `windows/386`), this can be easily accomplished with the provided |
| 51 | +`cross` tags: |
35 | 52 |
|
36 |
| - docker run --rm -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.3-cross go build -v |
| 53 | + docker run --rm -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp -e GOOS=windows -e GOARCH=386 golang:1.3.1-cross go build -v |
37 | 54 |
|
38 |
| -Alternatively, build for multiple platforms at once: |
| 55 | +Alternatively, you can build for multiple platforms at once: |
39 | 56 |
|
40 |
| - docker run --rm -it -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp golang:1.3-cross bash |
| 57 | + docker run --rm -it -v "$(pwd)":/usr/src/myapp -w /usr/src/myapp golang:1.3.1-cross bash |
41 | 58 | $ for GOOS in darwin linux; do
|
42 | 59 | > for GOARCH in 386 amd64; do
|
43 | 60 | > go build -v -o myapp-$GOOS-$GOARCH
|
|
0 commit comments