Skip to content

Commit

Permalink
e2e: expose proxy ports for manual inspection
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatczuk committed Nov 10, 2022
1 parent b8f2ac7 commit 5cf5873
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ifdef CI
COMPOSE := docker compose -f docker-compose.yaml $(foreach f,$(CONF),-f $(f))
else
COMPOSE := docker compose -f docker-compose.yaml -f override/cpuset.yaml $(foreach f,$(CONF),-f $(f))
COMPOSE := docker compose -f docker-compose.yaml -f override/cpuset.yaml -f override/proxy-expose-ports.yaml $(foreach f,$(CONF),-f $(f))
endif

# Docker tag to be tested.
Expand Down
7 changes: 7 additions & 0 deletions e2e/override/proxy-expose-ports.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: "3.8"

services:
proxy:
ports:
- "3128:3128"
- "10000:10000"

0 comments on commit 5cf5873

Please sign in to comment.