diff options
author | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-03-10 15:58:01 +0100 |
---|---|---|
committer | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-03-11 10:05:03 +0100 |
commit | 0482d32cf88a4281e0339cede868ff271f945731 (patch) | |
tree | b82ba71a7a2614b0512772113f34560e7301f368 /certServiceClient/docker-compose.yml | |
parent | 50ec01532a2c3816d964bf6b1b870968536a6fd7 (diff) |
Add docker-compose with certservice-client container succesful run
Fix client default request url to match default url from helm deployment of certservice-api
Issue-ID: AAF-996
Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com>
Change-Id: Icfaf1043b6d6583cdf663a45dabd7b46d407dd2f
Diffstat (limited to 'certServiceClient/docker-compose.yml')
-rw-r--r-- | certServiceClient/docker-compose.yml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/certServiceClient/docker-compose.yml b/certServiceClient/docker-compose.yml new file mode 100644 index 00000000..b0c65be9 --- /dev/null +++ b/certServiceClient/docker-compose.yml @@ -0,0 +1,59 @@ +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: + - ../certService/src/main/resources/scripts/:/opt/primekey/scripts + command: bash -c " + ./scripts/ejbca-configuration.sh & + /opt/primekey/bin/start.sh + " + healthcheck: + test: ["CMD-SHELL", "curl -kI https://localhost:8443/ejbca/publicweb/healthcheck/ejbcahealth"] + interval: 20s + timeout: 3s + retries: 9 + networks: + - certservice + + certservice: + image: onap/org.onap.aaf.certservice.aaf-certservice-api:latest + volumes: + - ../certService/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 + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:8080/actuator/health"] + interval: 10s + timeout: 3s + retries: 9 + networks: + - certservice + + certservice-client: + image: onap/org.onap.aaf.certservice.aaf-certservice-client:latest + container_name: aafcert-client + env_file: + - ./client_docker.env + user: root #Run as root to avoid volume permission issues + volumes: + - ./certs_volume/:/var/certs + depends_on: + certservice: + condition: service_healthy + networks: + - certservice + +networks: + certservice: + driver: bridge |