Skip to content

Commit 321adf6

Browse files
committed
Merge branch 'master' into log-without-newline
2 parents 4761744 + 7302a04 commit 321adf6

6 files changed

Lines changed: 371 additions & 192 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.*.sw*
22
node_modules/
33
*.log
4+
testarea

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:9.2-alpine
1+
FROM node:14-alpine
22

33
WORKDIR /app
44

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ And in the output you should see a `jwt` section.
7474
Set the environment variable `LOG_IGNORE_PATH` to a path you would like to exclude from verbose logging to stdout.
7575
This can help reduce noise from healthchecks in orchestration/infrastructure like Swarm, Kubernetes, ALBs, etc.
7676

77-
docker run -e LOG_IGNORE_PATH=/ping -e HTTP_PORT=8888 -e HTTPS_PORT=9999 -p 8080:8888 -p 8443:9999 --rm -t mendhak/http-https-echo
77+
docker run -e LOG_IGNORE_PATH=/ping -p 8080:80 -p 8443:443 --rm -t mendhak/http-https-echo
7878

7979

8080
With docker compose, this would be:
@@ -125,4 +125,6 @@ Will contain a `json` property in the response/output.
125125

126126
docker build -t mendhak/http-https-echo .
127127

128+
Run some tests to make sure features are working as expected.
128129

130+
./tests.sh

0 commit comments

Comments
 (0)