-
Notifications
You must be signed in to change notification settings - Fork 3k
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
official docker image? #349
Comments
I would be willing to contribute add a PR if there's interest. |
@wg Friendly ping to main commiter, in case he has notifications turned off. |
@sammerry - can you share Dockerfile for this work you have mentioned above? |
@hassanfarid I had a Dockerfile created a while ago lying around which I've been able to build successfully. So, I've submitted PR #492 in case it's useful for anyone else. Hope it helps you. |
FYI, the docker image / file referenced in the original posting of this issue should be this one: https://github.com/William-Yeh/docker-wrk |
Hi, just my two cents: FROM alpine:latest as build
RUN apk add --update alpine-sdk perl linux-headers
RUN cd /tmp && \
git clone -b 4.2.0 https://github.com/wg/wrk
RUN cd /tmp/wrk && \
make
FROM alpine:latest
MAINTAINER Juan Lozano <[email protected]>
COPY --from=build /tmp/wrk/wrk /usr/local/bin/
RUN apk add --no-cache libgcc
WORKDIR /data
ENTRYPOINT ["wrk"] With this |
Have you guys thought about releasing an official docker image? I've started having people install through docker when they need it and it works great
add this in the
.bashrc
then
wrk -t1 -d1m "http://somesite"
The text was updated successfully, but these errors were encountered: