This commit series completes a major infrastructure overhaul: - Migrate from manual GitHub Actions YAML to nix-actions workflow generation - Add automated dependency update workflow with scheduled runs - Add comprehensive Nix package definitions for all components (atlantis, sorcerer, archivist, etc.) - Create containerized builds with proper Docker support - Wrap scripts inside nix for better dependency management and shellcheck The build system now uses pure Nix expressions for both local development and CI/CD, providing better reproducibility and maintainability.
8 lines
248 B
Bash
Executable File
8 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if docker ps 2>&1 | grep -q zipkin; then
|
|
echo "Please stop the running Zipkin Docker instance and try again"
|
|
exit 1
|
|
fi
|
|
|
|
exec docker run -p 3000:3000 -p 4317:4317 -p 4318:4318 -p 9411:9411 --rm --name otel-lgtm -ti otel-lgtm:local |