diff options
author | 2020-02-14 14:55:14 +0100 | |
---|---|---|
committer | 2020-02-17 12:35:01 +0100 | |
commit | 5d11547c0299d7fe7156d515738546e4c288a9dc (patch) | |
tree | dc0eafff666ba674792b0436ca76ace7278529e0 /certService/docker-compose.yml | |
parent | 8209f7c8dc47546a354978e36b96d3b80b5b55d9 (diff) |
Created docker-compose with ejbca and certservice
Docker-compose should run configured EJBCA and certservice.
Signed-off-by: Michal Banka <michal.banka@nokia.com>
Issue-ID: AAF-997
Change-Id: I2c815c7a97636e31cc07d8a6d7a172a3895523b7
Diffstat (limited to 'certService/docker-compose.yml')
-rw-r--r-- | certService/docker-compose.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/certService/docker-compose.yml b/certService/docker-compose.yml new file mode 100644 index 00000000..04d4867f --- /dev/null +++ b/certService/docker-compose.yml @@ -0,0 +1,31 @@ +version: "2.1" + +services: + ejbca: + image: primekey/ejbca-ce + hostname: cahostname + container_name: mycontainer + ports: + - "80:8080" + - "443:8443" + volumes: + - ./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: 10s + timeout: 3s + retries: 9 + + certservice: + image: nexus3.onap.org:10001/onap/org.onap.aaf.certservice.aaf-certservice-api:1.0.0 + container_name: certservice + ports: + - "8080:8080" + depends_on: + ejbca: + condition: service_healthy + |