We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For those who are interested in using their own certificate, I added three lines of code to the docker-compose.yml. It's the volumes section.
cve_search: image: cve_search build: context: . dockerfile: docker/images/cve_search/dockerfile-cve_search args: - REPO=cve-search/cve-search - BRANCH=master volumes: - ./cert/certificate.key:/app/etc/certificate.key:ro - ./cert/certificate.crt:/app/etc/certificate.crt:ro hostname: cve_search depends_on: - redis - mongo restart: always environment: - PYTHONUNBUFFERED=TRUE - WORKER_SIZE=1 - MONGODB_HOST=mongo ports: - '443:5000' networks: - frontend - backend
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For those who are interested in using their own certificate, I added three lines of code to the docker-compose.yml.
It's the volumes section.
The text was updated successfully, but these errors were encountered: