-
Notifications
You must be signed in to change notification settings - Fork 1
Migrate quickstart docs #17
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,6 +48,7 @@ PGTune | |
| Packagist | ||
| Percona | ||
| PgBouncer | ||
| Podman | ||
| Postgres | ||
| Protobuf | ||
| SBOM | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,47 @@ | ||||||
| name: Dependency-Track | ||||||
|
|
||||||
| services: | ||||||
| apiserver: | ||||||
| image: ghcr.io/dependencytrack/hyades-apiserver:snapshot | ||||||
| depends_on: | ||||||
| postgres: | ||||||
| condition: service_healthy | ||||||
| deploy: | ||||||
| resources: | ||||||
| limits: | ||||||
| memory: 2g | ||||||
| environment: | ||||||
| DT_DATASOURCE_URL: "jdbc:postgresql://postgres:5432/dtrack" | ||||||
| DT_DATASOURCE_USERNAME: "dtrack" | ||||||
| DT_DATASOURCE_PASSWORD: "dtrack" | ||||||
| ports: | ||||||
| - "127.0.0.1:8080:8080" | ||||||
| volumes: | ||||||
| - "apiserver-data:/data" | ||||||
| restart: unless-stopped | ||||||
|
Comment on lines
+19
to
+21
|
||||||
|
|
||||||
| frontend: | ||||||
| image: ghcr.io/dependencytrack/hyades-frontend:snapshot | ||||||
| environment: | ||||||
| API_BASE_URL: "http://localhost:8080" | ||||||
| ports: | ||||||
| - "127.0.0.1:8081:8080" | ||||||
| restart: unless-stopped | ||||||
|
Comment on lines
+27
to
+29
|
||||||
|
|
||||||
| postgres: | ||||||
| image: postgres:18-alpine | ||||||
|
||||||
| image: postgres:18-alpine | |
| image: postgres:14-alpine |
Copilot
AI
Apr 25, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YAML sequence indentation under volumes is incorrect (list items are not indented). This violates the repository’s yamllint rule (indent-sequences: false) and should be fixed by indenting the - ... entries under volumes.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,51 @@ | ||||||
| # Quick start | ||||||
|
|
||||||
| In this tutorial, we will get Dependency-Track running locally using Docker Compose | ||||||
| and log in to the frontend for the first time. | ||||||
|
|
||||||
| ## What we need | ||||||
|
|
||||||
| - [Docker](https://docs.docker.com/get-docker/) or [Podman](https://podman.io/) | ||||||
|
||||||
| - [Docker](https://docs.docker.com/get-docker/) or [Podman](https://podman.io/) | |
| - [Docker](https://docs.docker.com/get-docker/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YAML sequence indentation under
portsis invalid for this repo’s yamllint config (indent-sequences: false) and may also break Compose parsing. Indent the list items underports.