We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FROM alpine:latest
RUN apk update && apk add --no-cache wget
RUN wget https://github.com/layou233/NeverIdle/releases/download/0.1/NeverIdle-linux-arm64 -O /usr/local/bin/NeverIdle
RUN chmod 777 /usr/local/bin/NeverIdle
CMD ["/bin/sh", "-c", "/usr/local/bin/NeverIdle -c 2h -m 2 -n 4h"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FROM alpine:latest
Install dependencies
RUN apk update && apk add --no-cache wget
Download script
RUN wget https://github.com/layou233/NeverIdle/releases/download/0.1/NeverIdle-linux-arm64 -O /usr/local/bin/NeverIdle
Change file permission
RUN chmod 777 /usr/local/bin/NeverIdle
Run the script with default arguments
CMD ["/bin/sh", "-c", "/usr/local/bin/NeverIdle -c 2h -m 2 -n 4h"]
The text was updated successfully, but these errors were encountered: