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

Exposed port 9329 in Docker #21403

Open
wants to merge 3 commits into
base: main
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
1 change: 1 addition & 0 deletions .devcontainer/.docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ EXPOSE 4178
EXPOSE 6174
EXPOSE 7173
EXPOSE 7174
EXPOSE 9323


# Full Devcontainer Stage: Add the code and install dependencies
Expand Down
1 change: 1 addition & 0 deletions .devcontainer/.docker/development.compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ services:
- 7173:7173
- 7174:7174
- 9174:9174
- 9323:9323
environment:
- DEBUG=${DEBUG:-}
- APP_FLAGS=${APP_FLAGS:-}
3 changes: 2 additions & 1 deletion .devcontainer/.docker/full-devcontainer.compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ services:
- 6174:6174
- 7173:7173
- 7174:7174
- 9174:9174
- 9174:9174
- 9323:9323
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@
},
"5368": {
"onAutoForward": "silent"
},
"9323" : {
"label": "Comments Tests Report",
"onAutoForward": "silent"
}
},
"customizations": {
Expand Down
8 changes: 6 additions & 2 deletions apps/admin-x-settings/playwright.config.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import {adminXPlaywrightConfig} from '@tryghost/admin-x-framework/playwright';
import { adminXPlaywrightConfig } from '@tryghost/admin-x-framework/playwright';

export default adminXPlaywrightConfig();
export default adminXPlaywrightConfig({
reporter: [
['html', { host: '0.0.0.0', port: 9323 }],
]
});
4 changes: 3 additions & 1 deletion apps/comments-ui/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export default defineConfig({
/* Hardcode to use all cores in CI */
workers: process.env.CI ? '100%' : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
reporter: [
['html', {host: '0.0.0.0', port: 9323}],
],
timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 20000,
expect: {
timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 5000
Expand Down
Loading