Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: add multistage manifest and update related doc #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
LICENSE
readme.md
matcher.sample
.git
14 changes: 14 additions & 0 deletions Dockfile.multistage
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Build
FROM golang:1.18.0-alpine3.15 AS builder
WORKDIR /build
COPY go.mod .
COPY go.sum .
RUN go mod download
ADD . /build
RUN CGO_ENABLED=0 go build -o /go-udev

## Deploy
FROM alpine:latest
WORKDIR /
COPY --from=builder /go-udev /go-udev
ENTRYPOINT ["/go-udev"]
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,26 @@ You could pass this file using for both mode:

```

## Docker usage

### How to build docker image
```
docker build . -f Dockfile.multistage -t go-udev
```

### How to execute `go-udev -info` using docker image
```
docker run -rm -t go-udev -info
```

### How to execute `go-udev -monitor` using docker image
```
docker run --rm -v=/dev:/dev -v /run/udev:/run/udev:ro --net=host -t go-udev -monitor
```
Warning: unsafe method because we share host /dev directory to the container.

*__TODO__: unsafe and `-monitor` is not fully functional in docker, fix working in progress...*

## Throubleshooting

Don't hesitate to notice if you detect a problem with this tool or library.
Expand Down