-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
177 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
github: [voznik] | ||
# description: "#StandWithUkraine - support with a donation" | ||
custom: ['https://stand-with-ukraine.pp.ua'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behaviour** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- Platform: [e.g. x86_64 GNU/Linux ] (run ```uname -om```) | ||
- ralertsinua version [e.g. v0.5.1] | ||
- The last commit id if you built project from sources (run : ```git rev-parse HEAD```) | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
FROM raonigabriel/web-terminal | ||
RUN apk add --no-cache curl | ||
|
||
ENV RELEASE_URL=https://github.com/voiceapiai/ralertsinua/releases/latest/download/ralertsinua-x86_64-unknown-linux-musl.tar.xz | ||
|
||
WORKDIR /home/ralertsinua | ||
|
||
|
||
# Install the latest musl version of ralertsinua | ||
RUN curl -L --proto '=https' --tlsv1.2 -sSf "$RELEASE_URL" | tar -xvJf - | ||
RUN find . -type f -name 'ralertsinua' -exec mv {} /usr/local/bin/ \; | ||
ADD $RELEASE_URL ralertsinua.tar.xz | ||
RUN tar -xvJf ralertsinua.tar.xz && \ | ||
find . -type f -name 'ralertsinua' -exec mv {} /usr/local/bin/ \; && \ | ||
rm ralertsinua.tar.xz | ||
|
||
HEALTHCHECK CMD ["ralertsinua", "--help"] | ||
|
||
# Comment this line if you don't need ttyd, and then just run ralertsina | ||
CMD [ "ttyd", "-s", "3", "-t", "titleFixed=Rust alerts.in.ua TUI - ralertsinua", "-t", "rendererType=webgl", "-t", "disableLeaveAlert=true", "ralertsinua" ] | ||
# CMD [ "ralertsinua" ] | ||
|
||
# TODO: https://github.com/colinmurphy1/docker-ttyd/blob/main/entrypoint.sh |
Oops, something went wrong.