Meetup #5

Loïc RODIER

@pouicr

What's new ?

DockerCon

Austin

3 days

1500 attendees, 80 speakers and 60 sponsors

http://2017.dockercon.com/

Moby

New open source model (RedHat like)

If you’re a Docker user: nothing will change, only Docker will better leverage the ecosystem to innovate faster for you

If you’re a system build: Moby will help you innovate and collaborate more efficiently

LinuxKit

Minimalist Linux distribution to run container

Secure, lean, portable and customizable

https://github.com/linuxkit/linuxkit

 

Multistage build

Best feature ever (according @v_maerten)


FROM golang:1.7.3 as builder
WORKDIR /go/src/github.com/alexellis/href-counter/
RUN go get -d -v golang.org/x/net/html  
COPY app.go    .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .

FROM alpine:latest  
RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY --from=builder /go/src/github.com/alexellis/href-counter/app .
CMD ["./app"]

The Docker Student Developer Kit

 

 5 private repos on Docker Cloud

 

Campus Ambassador

Promote Docker in your campus and get trained for free + Docker EE access

 

https://blog.docker.com/2017/05/announcing-docker-student-developer-kit-campus-ambassador-program/

DockerCon Europe

Copenhague

 

 

16-18 Oct 2017

Merci

Docker Meetup #5 What's New

By Loïc Rodier

Docker Meetup #5 What's New

  • 659