Created
January 4, 2019 21:00
-
-
Save stevespringett/7179788bcdf94c6a7a2cd2361647f184 to your computer and use it in GitHub Desktop.
Dependency-Track sample compose file with PostgreSQL - This doesn't take into account startup/timing to ensure PostgreSQL is ready to accept connections before Dependency-Track startups up.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| postgres10: | |
| environment: | |
| - POSTGRES_USER=dtrack | |
| - POSTGRES_PASSWORD=changeme | |
| image: 'postgres:10.5' | |
| volumes: | |
| - './postgres-data:/var/lib/postgresql/data' | |
| dtrack: | |
| environment: | |
| - ALPINE_DATABASE_MODE=external | |
| - ALPINE_DATABASE_URL=jdbc:postgresql://postgres10:5432/dtrack | |
| - ALPINE_DATABASE_DRIVER=org.postgresql.Driver | |
| - ALPINE_DATABASE_DRIVER_PATH=/extlib/postgresql-42.2.5.jar | |
| - ALPINE_DATABASE_USERNAME=dtrack | |
| - ALPINE_DATABASE_PASSWORD=changeme | |
| image: 'owasp/dependency-track' | |
| ports: | |
| - '80:8080' | |
| volumes: | |
| - './data:/data' | |
| depends_on: | |
| - postgres10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @stevespringett ,
Is this an issue?
curl -v https://nvd.nist.gov/feeds/json/cve/1.1/nvdcve-1.1-2002.json.gz
CApath: none
curl: (60) SSL certificate problem: certificate has expired
More details here: https://curl.haxx.se/docs/sslcerts.html
curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.