Skip to content

Commit

Permalink
feat: pass number of processes to api
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Mar 27, 2024
1 parent ab6842c commit b7c0a9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/e2e/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class DockerManager {
let networkMode = 'host';
let redisUrl = config.get<string>('redis.url');
let dbConnectionHost = config.get<string>('db.connection.host');
const processes = config.get<string>('server.processes');

const isLinux = await this.isLinuxHost();

Expand All @@ -35,6 +36,7 @@ class DockerManager {
'NEW_RELIC_ENABLED=false',
`REDIS_URL=${redisUrl}`,
`DB_CONNECTION_HOST=${dbConnectionHost}`,
`SERVER_PROCESSES=${processes}`,
],
HostConfig: {
PortBindings: {
Expand Down

0 comments on commit b7c0a9e

Please sign in to comment.