Created
December 14, 2017 19:39
-
-
Save jvanderhoof/7397b037bf5b2bbd673cce8e94da2656 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
version: '2.1' | |
services: | |
pg: | |
image: postgres:9.3 | |
conjur: | |
image: cyberark/conjur | |
command: server -a cucumber | |
environment: | |
DATABASE_URL: postgres://postgres@pg/postgres | |
CONJUR_DATA_KEY: 'WMfApcDBtocRWV+ZSUP3Tjr5XNU+Z2FdBb6BEezejIs=' | |
depends_on: | |
- pg | |
tester: | |
build: . | |
volumes: | |
- ./spec/reports:/src/conjur-api/spec/reports | |
- ./features/reports:/src/conjur-api/features/reports | |
environment: | |
CONJUR_APPLIANCE_URL: http://conjur | |
CONJUR_VERSION: 5 | |
CONJUR_ACCOUNT: cucumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment