-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: selenium tests against a local prod target
- Loading branch information
Adam Hunter
committed
Feb 23, 2016
1 parent
47a7c95
commit 5aaebd6
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# | ||
dataselenium: | ||
extends: | ||
file: docker-compose-common.yml | ||
service: dataselenium | ||
|
||
# runs the selenium tests against docker-compose-teststack.yml | ||
seleniumtesthost: | ||
image: muccg/rdrf-dev | ||
command: selenium | ||
environment: | ||
- DBUSER=rdrfapp | ||
- WAIT_FOR_DB=1 | ||
- WAIT_FOR_MONGO=1 | ||
- WAIT_FOR_HOST_PORT=8443 | ||
- DEPLOYMENT=prod | ||
volumes_from: | ||
- dataselenium | ||
external_links: | ||
- rdrf_uwsgiprod_1:web | ||
- rdrf_dbprod_1:db | ||
- rdrf_seleniumhub_1:hub | ||
- rdrf_mongoprod_1:mongo |