Forked from jvanderhoof/jenkins-example-docker-compose.yml
Created
December 26, 2017 08:20
-
-
Save cyeong/0184d7c2bf0b50f29b3f526e477d0a85 to your computer and use it in GitHub Desktop.
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
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