0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Docker Selenium の最大セッション数の設定を docker run で指定する

Posted at

はじめに

Dockerのコンテナで運用しているSelenium Gridの最大セッション数を複数にしようとしたのですが、run コマンドからの指定する記事が無かったので備忘録

コマンド

単純に docker run のオプションに環境変数として指定するだけです。

指定するオプション

-e SE_NODE_MAX_SESSIONS=2

具体例

docker run -d --name=selenium -p 4444:4444 -p 7900:7900 --shm-size="2g" -e SE_NODE_MAX_SESSIONS=2 seleniarm/standalone-chromium:latest

このコマンドはあくまで記者の場合です、適宜ご自身のものと合わせてください。

おわりに

docker最高。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?