We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A great platform that I can using to manage the test devices in our team easily.
I have set up the platform by Docker container, and I have set upstf/docker-compose.yaml like this, so I can login by Name and Email.
stf/docker-compose.yaml
I'm confused with the 2 questions,
version: "3" services: rethinkdb: container_name: rethinkdb image: rethinkdb:2.4.2 ports: - "8080:8080" - "28015:28015" restart: unless-stopped volumes: - "rethinkdb-data:/data" command: "rethinkdb --bind all --cache-size 2048" stf: container_name: stf image: devicefarmer/stf ports: - "7100:7100" - "7110:7110" - "7400-7500:7400-7500" environment: - TZ='America/Los_Angeles' - RETHINKDB_PORT_28015_TCP=tcp://rethinkdb:28015 - STF_ADMIN_EMAIL=my_email - STF_ADMIN_NAME=my_username - STF_ROOT_GROUP_NAME=my_group restart: unless-stopped command: stf local --adb-host host.docker.internal --public-ip my_ip_address --provider-min-port 7400 --provider-max-port 7500 volumes: rethinkdb-data: {}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A great platform that I can using to manage the test devices in our team easily.
I have set up the platform by Docker container, and I have set up
stf/docker-compose.yaml
like this, so I can login by Name and Email.I'm confused with the 2 questions,
The text was updated successfully, but these errors were encountered: