aboutsummaryrefslogtreecommitdiffstats
path: root/certService/docker-compose.yml
blob: 2f4f4b4a75c0177a49b9d5855e17521fe4ac2ec6 (plain)
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
version: "2.1"

services:
  ejbca:
    image: primekey/ejbca-ce:6.15.2.5
    hostname: cahostname
    container_name: aafcert-ejbca
    ports:
      - "80:8080"
      - "443:8443"
    volumes:
      - ./src/main/resources/scripts/:/opt/primekey/scripts
    command: bash -c "
      /opt/primekey/bin/start.sh
      "
    healthcheck:
      test: ["CMD-SHELL", "curl -kI https://localhost:8443/ejbca/publicweb/healthcheck/ejbcahealth"]
      interval: 10s
      timeout: 3s
      retries: 9
    networks:
      - certservice

  certservice:
    image: onap/org.onap.aaf.certservice.aaf-certservice-api:latest
    volumes:
      - ./helm/aaf-cert-service/resources/cmpServers.json:/etc/onap/aaf/certservice/cmpServers.json
    container_name: aafcert-service
    ports:
      - "8080:8080"
    depends_on:
      ejbca:
        condition: service_healthy
    networks:
      - certservice


networks:
  certservice:
    driver: bridge