Skip to content

Commit

Permalink
testing: only detach nodes 2 and 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ikuni17 committed Aug 1, 2023
1 parent f6044c0 commit 19f116c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/kbn-es/src/utils/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const SHARED_SERVERLESS_PARAMS = [

'--rm',

'--detach',
// '--detach',

'--net',
'elastic',
Expand Down Expand Up @@ -130,6 +130,7 @@ const SERVERLESS_NODES: Array<Omit<ServerlessEsNodeArgs, 'image'>> = [
{
name: 'es02',
params: [
'--detach',
'-p',
'127.0.0.1:9202:9202',

Expand All @@ -147,6 +148,7 @@ const SERVERLESS_NODES: Array<Omit<ServerlessEsNodeArgs, 'image'>> = [
{
name: 'es03',
params: [
'--detach',
'-p',
'127.0.0.1:9203:9203',

Expand Down

0 comments on commit 19f116c

Please sign in to comment.