mirror of
https://github.com/DependencyTrack/dependency-track.git
synced 2025-10-19 16:03:19 +00:00

To make it clear that these Compose files are only meant for dev and testing work. Avoiding confusion with the existing `src/main/docker/docker-compose.yml`, which is also used as quickstart. Signed-off-by: nscuro <nscuro@protonmail.com>
5 lines
No EOL
150 B
Bash
Executable file
5 lines
No EOL
150 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
pushd docs >/dev/null || exit
|
|
(bundle install --path ./vendor/bundle && bundle exec jekyll build) || true
|
|
popd >/dev/null || exit |