mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 15:30:36 +01:00
add a simple docker example
Former-commit-id: cacfa3ad903ce542ce455cb2298c40639c645d3c
This commit is contained in:
parent
7096050eda
commit
c55d2063e1
|
@ -33,6 +33,7 @@ $ go run main.go
|
|||
### Overview
|
||||
|
||||
- [Hello world!](hello-world/main.go)
|
||||
- [Docker](docker/README.md)
|
||||
- [Hello WebAssembly!](webassembly/basic/main.go)
|
||||
- [Glimpse](overview/main.go)
|
||||
- [Tutorial: Online Visitors](tutorial/online-visitors/main.go)
|
||||
|
|
3
_examples/docker/.dokerignore
Normal file
3
_examples/docker/.dokerignore
Normal file
|
@ -0,0 +1,3 @@
|
|||
.git
|
||||
node_modules
|
||||
bin
|
15
_examples/docker/Dockerfile
Normal file
15
_examples/docker/Dockerfile
Normal 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"]
|
27
_examples/docker/README.md
Normal file
27
_examples/docker/README.md
Normal 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
|
||||
```
|
8
_examples/docker/docker-compose.yml
Normal file
8
_examples/docker/docker-compose.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
# docker-compose up [--build]
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
app:
|
||||
build: .
|
||||
ports:
|
||||
- 8080:8080
|
7
_examples/docker/go.mod
Normal file
7
_examples/docker/go.mod
Normal 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
26
_examples/docker/main.go
Normal 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))
|
||||
}
|
Loading…
Reference in New Issue
Block a user