add a simple docker example

Former-commit-id: cacfa3ad903ce542ce455cb2298c40639c645d3c
This commit is contained in:
Gerasimos (Makis) Maropoulos 2020-02-06 18:43:03 +02:00
parent 7096050eda
commit c55d2063e1
7 changed files with 87 additions and 0 deletions

View File

@ -33,6 +33,7 @@ $ go run main.go
### Overview ### Overview
- [Hello world!](hello-world/main.go) - [Hello world!](hello-world/main.go)
- [Docker](docker/README.md)
- [Hello WebAssembly!](webassembly/basic/main.go) - [Hello WebAssembly!](webassembly/basic/main.go)
- [Glimpse](overview/main.go) - [Glimpse](overview/main.go)
- [Tutorial: Online Visitors](tutorial/online-visitors/main.go) - [Tutorial: Online Visitors](tutorial/online-visitors/main.go)

View File

@ -0,0 +1,3 @@
.git
node_modules
bin

View File

@ -0,0 +1,15 @@
# docker build -t myapp .
# docker run --rm -it -p 8080:8080 myapp:latest
FROM golang:latest AS builder
RUN apt-get update
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64
WORKDIR /go/src/app
COPY . /go/src/app
RUN go install
FROM scratch
COPY --from=builder /go/bin/app .
ENTRYPOINT ["./app"]

View File

@ -0,0 +1,27 @@
# Docker Example
The only requirement for this example is [Docker](https://docs.docker.com/install/).
## Docker Compose
The Docker Compose is pre-installed with Docker for Windows. For linux please follow the steps described at: https://docs.docker.com/compose/install/.
Build and run the application for linux arch and expose it on http://localhost:8080.
```sh
$ docker-compose up
```
See [docker-compose file](docker-compose.yml).
## Without Docker Compose
1. Build the image as "myapp" (docker build)
2. Run the image and map exposed ports (-p 8080:8080)
3. Attach the interactive mode so CTRL/CMD+C signals are respected to shutdown the Iris Server (-it)
4. Cleanup the image on finish (--rm)
```sh
$ docker build -t myapp .
$ docker run --rm -it -p 8080:8080 myapp:latest
```

View File

@ -0,0 +1,8 @@
# docker-compose up [--build]
version: '3'
services:
app:
build: .
ports:
- 8080:8080

7
_examples/docker/go.mod Normal file
View File

@ -0,0 +1,7 @@
module app
go 1.13
require (
github.com/kataras/iris/v12 v12.1.6
)

26
_examples/docker/main.go Normal file
View File

@ -0,0 +1,26 @@
package main
import (
"flag"
"github.com/kataras/iris/v12"
)
var addr = flag.String("addr", ":8080", "host:port to listen on")
// $ docker-compose up
func main() {
flag.Parse()
app := iris.New()
app.Get("/", func(ctx iris.Context) {
ctx.HTML("<strong>Hello World!</strong>")
})
app.Get("/api/values/{id:uint}", func(ctx iris.Context) {
ctx.Writef("id: %d", ctx.Params().GetUintDefault("id", 0))
})
app.Run(iris.Addr(*addr))
}