Skip to content

Commit cc8fca9

Browse files
committed
Revert exposed -web port from 8000 to 5001
1 parent ba434b7 commit cc8fca9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
load: true
7777
- name: Run Perl tests
7878
run: >
79-
docker run -d -i -p 8000:80
79+
docker run -d -i -p 5001:80
8080
${{ steps.docker-build-test.outputs.imageid }}
8181
- uses: actions/setup-node@v4
8282
with:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- 'web-assets:/app/root/assets/'
1717
- '/app/local'
1818
ports:
19-
- '8000:80'
19+
- '5001:80'
2020
environment:
2121
# default is 120, shorten to work with compose label
2222
COLUMNS: 96

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineConfig({
2626
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2727
use: {
2828
/* Base URL to use in actions like `await page.goto('/')`. */
29-
baseURL: "http://127.0.0.1:8000",
29+
baseURL: "http://127.0.0.1:5001",
3030

3131
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
3232
trace: "on-first-retry",

run-dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
#
1919
# carton exec ./run-dev
2020
#
21-
# Then browse to http://localhost:8000/
21+
# Then browse to http://localhost:5001/
2222

23-
METACPAN_PROXY_LISTEN="localhost:8000"
23+
METACPAN_PROXY_LISTEN="localhost:5001"
2424

2525
while [[ $# -gt 0 ]]; do
2626
case "$1" in

0 commit comments

Comments
 (0)