-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
50 lines (46 loc) · 1.1 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
services:
conjur:
image: cyberark/conjur:latest
command: server -a cucumber
environment:
DATABASE_URL: postgres://postgres@postgres/postgres
CONJUR_DATA_KEY: 'WMfApcDBtocRWV+ZSUP3Tjr5XNU+Z2FdBb6BEezejIs='
depends_on:
- postgres
postgres:
image: postgres:9.3
test:
build:
context: .
dockerfile: Dockerfile.test
image: summon-conjur-tester
ports:
- "8080"
entrypoint: /bin/bash
command: './bin/test-entrypoint.sh'
volumes:
- ./output:/summon-conjur/output
environment:
CONJUR_APPLIANCE_URL: http://conjur
CONJUR_ACCOUNT:
CONJUR_AUTHN_LOGIN:
CONJUR_AUTHN_API_KEY:
dev:
build:
context: .
dockerfile: Dockerfile.test
image: summon-conjur-dev
ports:
- "8080"
depends_on:
- conjur
entrypoint: /bin/bash
command: './bin/test-entrypoint.sh'
volumes:
- .:/summon-conjur
- ../conjur-api-go:/cconjur-api-go:ro
environment:
CONJUR_APPLIANCE_URL: http://conjur
CONJUR_ACCOUNT:
CONJUR_AUTHN_LOGIN:
CONJUR_AUTHN_API_KEY: