Skip to content
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

Migrated to echo server from hashicorp #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nginx:1.27.1-alpine-slim

RUN apk --no-cache add curl=8.9.1-r1
RUN apk --no-cache add curl=8.10.0-r0

COPY nginx.conf.template /etc/nginx/nginx.conf.template
COPY start.sh /usr/bin/start.sh
Expand Down
6 changes: 2 additions & 4 deletions docker-compose.ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
version: "3.8"
services:
echo-server-test:
image: mendhak/http-https-echo:30
environment:
HTTP_PORT: 8000
image: hashicorp/http-echo

nginx-test:
# name required for Healthy Container CI/CD check
Expand All @@ -15,7 +13,7 @@ services:
NGINX_LOGS_INCLUDE_STATUS_CODE_REGEX: $NGINX_LOGS_INCLUDE_STATUS_CODE_REGEX
NGINX_LOGS_INCLUDE_QUERY_PARAMS: $NGINX_LOGS_INCLUDE_QUERY_PARAMS
NGINX_PORT: 8001
APP_PORT: 8000
APP_PORT: 5678
APP_HOST: echo-server-test
ports:
- 8001:8001
Expand Down