-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into webpassword
Signed-off-by: Brad Smith <[email protected]>
- Loading branch information
Showing
91 changed files
with
542 additions
and
1,547 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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
FROM node:21-alpine3.19 | ||
FROM node:22-alpine3.21 | ||
|
||
RUN apk add --no-cache \ | ||
git \ | ||
nano\ | ||
openssh \ | ||
py3-pip | ||
git \ | ||
nano \ | ||
openssh \ | ||
py3-pip | ||
|
||
ENV USER node | ||
USER $USER | ||
USER ${USER} | ||
|
||
# python packages (as mkdocs) are installed in the user's home directory | ||
# but we need them to be accessible from $PATH | ||
ENV PATH="$PATH:/home/$USER/.local/bin" | ||
# but we need them to be accessible from ${PATH} | ||
ENV PATH="${PATH}:/home/${USER}/.local/bin" |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
|
||
env: | ||
FORCE_COLOR: 2 | ||
NODE: 20 | ||
NODE: 22 | ||
PYTHON_VERSION: "3.11" | ||
|
||
jobs: | ||
|
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 |
---|---|---|
|
@@ -32,7 +32,6 @@ | |
}, | ||
"MD036": false, | ||
"MD038": false, | ||
"MD040": false, | ||
"MD041": false, | ||
"MD045": false, | ||
"MD046": { | ||
|
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
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
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 |
---|---|---|
|
@@ -28,4 +28,3 @@ docker rm pihole | |
docker pull pihole/pihole:latest | ||
docker run [ ... arguments (see Getting Started) ... ] | ||
``` | ||
|
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
Oops, something went wrong.