mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-01 22:42:23 +02:00
12 lines
271 B
Bash
12 lines
271 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Starting Redis and broker.."
|
|
docker-compose up -d broker redis
|
|
sleep 1
|
|
|
|
echo "Setting test daq_profile config to Redis.."
|
|
redis-cli -x set config.debug.test_pipeline < docker/example_detector.json
|
|
|
|
echo "Starting pipeline.."
|
|
docker-compose up -d |