lib/gitlab/qa/component/elasticsearch.rb [15:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        end

        def start
          @docker.run(image: image, tag: tag) do |command|
            command << "-d"
            command << "--name #{name}"
            command << "--net #{network}"
            command << "--publish 9200:9200"
            command << "--publish 9300:9300"

            command.env("discovery.type", "single-node")
            command.env("ES_JAVA_OPTS", "-Xms512m -Xmx512m")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lib/gitlab/qa/component/opensearch.rb [15:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        end

        def start
          @docker.run(image: image, tag: tag) do |command|
            command << "-d"
            command << "--name #{name}"
            command << "--net #{network}"
            command << "--publish 9200:9200"
            command << "--publish 9300:9300"

            command.env("discovery.type", "single-node")
            command.env("ES_JAVA_OPTS", "-Xms512m -Xmx512m")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



